]> git.cryptolib.org Git - avr-crypto-lib.git/blobdiff - test_src/cli.h
fixing E-Mail-Address & Copyright
[avr-crypto-lib.git] / test_src / cli.h
index 58c3bfc657b4c67c83c4727daad039fc9a64cbcb..15937a1bad5b96dfe230d6a4bad01e2d544157c0 100644 (file)
@@ -1,7 +1,7 @@
 /* cli.h */
 /*
     This file is part of the AVR-Crypto-Lib.
-    Copyright (C) 2008  Daniel Otte (daniel.otte@rub.de)
+    Copyright (C) 2006-2015 Daniel Otte (bg@nerilex.org)
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
@@ -16,6 +16,7 @@
     You should have received a copy of the GNU General Public License
     along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */
+
 #ifndef CLI_H_
 #define CLI_H_
 
@@ -44,7 +45,7 @@ typedef struct {
        PGM_P        cmd_name;      /* string containing the function name */
        PGM_P        cmd_param_str; /* param descriptor string */
        void_fpt     cmd_function;  /* function pointer */
-       cmdoption_toptions;
+       cmdoption_t *options;
 } cmdlist_entry_t;
 
 extern cli_rx_fpt cli_rx;
@@ -56,15 +57,17 @@ extern uint8_t cli_echo;
 void cli_putc(char c);
 uint16_t cli_getc(void);
 uint16_t cli_getc_cecho(void);
-uint8_t cli_getsn(char* s, uint16_t n);
-void cli_putstr(char* s);
+uint8_t cli_getsn(char *s, size_t n);
+uint8_t cli_getsn_cecho(char *s, uint16_t n);
+void cli_putstr(const char *s);
 void cli_putstr_P(PGM_P s);
-void cli_hexdump(void* data, uint16_t length);
-void cli_hexdump_rev(void* data, uint16_t length);
-void cli_hexdump2(void* data, uint16_t length);
-void cli_hexdump_block(void* data, uint16_t length, uint8_t indent, uint8_t width);
+void cli_hexdump_byte(uint8_t byte);
+void cli_hexdump(const void *data, size_t length);
+void cli_hexdump_rev(const void *data, size_t length);
+void cli_hexdump2(const void *data, size_t length);
+void cli_hexdump_block(const void *data, size_t length, uint8_t indent, uint8_t width);
 
-void echo_ctrl(chars);
+void echo_ctrl(char *s);
 int8_t cmd_interface(PGM_VOID_P cmd_desc);