]> git.cryptolib.org Git - arm-crypto-lib.git/blobdiff - test_src/cli.h
adding salsa20
[arm-crypto-lib.git] / test_src / cli.h
index a27fe257108eca203ceb3e15e331e21284a2e512..4210695d595baff5c66907166c36631ae9796be1 100644 (file)
@@ -1,6 +1,6 @@
 /* cli.h */
 /*
-    This file is part of the ARM-Crypto-Lib.
+    This file is part of the AVR-Crypto-Lib.
     Copyright (C) 2008  Daniel Otte (daniel.otte@rub.de)
 
     This program is free software: you can redistribute it and/or modify
@@ -42,10 +42,10 @@ typedef struct {
 #define CLI_OPTION_MANP 0x02
 
 typedef struct {
-       const char*  cmd_name;      /* string containing the function name */
-       const char*  cmd_param_str; /* param descriptor string */
+       const char*        cmd_name;      /* string containing the function name */
+       const char*        cmd_param_str; /* param descriptor string */
        void_fpt     cmd_function;  /* function pointer */
-       cmdoption_t* options;
+       const cmdoption_t* options;
 } cmdlist_entry_t;
 
 extern cli_rx_fpt cli_rx;