]> git.cryptolib.org Git - avr-crypto-lib.git/blobdiff - test_src/main-rabbit-test.c
global style change (now * is attached to identifier not to type)
[avr-crypto-lib.git] / test_src / main-rabbit-test.c
index 4f66c66702dcb6c85ccdf29fed05c0ca2d421594..46ee61c8d7e1190853409d01ebbe0bbabbd30a06 100644 (file)
 #include "scal-basic.h"
 #include "scal-nessie.h"
 
-const charalgo_name = "Rabbit";
+const char *algo_name = "Rabbit";
 
 /*****************************************************************************
  *  additional validation-functions                                                                                     *
  *****************************************************************************/
 
-void test_vector(void* key, void* iv, const void* ref){
+void test_vector(void *key, void *iv, const void *ref){
        rabbit_ctx_t ctx;
        uint8_t fail=0;
        cli_putstr_P(PSTR("\r\n testing with\r\n key:  "));