X-Git-Url: https://git.cryptolib.org/?a=blobdiff_plain;f=test_src%2Fcli.h;h=f95f26e84a0f1e4ee82ae1d2c17039d40a372314;hb=b97b5aeaa3569443d9b95a77a388c6615b33f9e3;hp=422d97acb2f8fae2bc5e643196131d57d3ad3824;hpb=55961d766375e8415baf7bc1e74fe9ba087e18ad;p=avr-crypto-lib.git diff --git a/test_src/cli.h b/test_src/cli.h index 422d97a..f95f26e 100644 --- a/test_src/cli.h +++ b/test_src/cli.h @@ -16,6 +16,7 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . */ + #ifndef CLI_H_ #define CLI_H_ @@ -57,8 +58,10 @@ 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); +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_byte(uint8_t byte); void cli_hexdump(const void* data, uint16_t length); void cli_hexdump_rev(const void* data, uint16_t length); void cli_hexdump2(const void* data, uint16_t length);