X-Git-Url: https://git.cryptolib.org/?a=blobdiff_plain;ds=sidebyside;f=base64%2Fbase64_dec.c;h=5a0dcca292d0e1bf4f8851442ee964af811a3ba5;hb=701cee0d98aab48dd3192c8cc7c77eb42581bc56;hp=f057f54f1c4b4cdf8f129f4e1461b9dafaad3f41;hpb=d32eba56ce10ea6b9eff123b50d9842673b38f2b;p=avr-crypto-lib.git diff --git a/base64/base64_dec.c b/base64/base64_dec.c index f057f54..5a0dcca 100644 --- a/base64/base64_dec.c +++ b/base64/base64_dec.c @@ -29,7 +29,7 @@ #include #include "base64_dec.h" -#include "test_src/cli.h" +#include "cli.h" /* #define USE_GCC_EXTENSION @@ -187,7 +187,7 @@ int base64_binlength(char* str, uint8_t strict){ */ -int base64dec(void* dest, char* b64str, uint8_t strict){ +int base64dec(void* dest, const char* b64str, uint8_t strict){ uint8_t buffer[4]; uint8_t idx=0; uint8_t term=0;