]> git.cryptolib.org Git - avr-crypto-lib.git/blobdiff - base64/base64_dec.c
global style change (now * is attached to identifier not to type)
[avr-crypto-lib.git] / base64 / base64_dec.c
index 5a0dcca292d0e1bf4f8851442ee964af811a3ba5..2a6e94141868b8e86a3e94847fe6dd9825572bf3 100644 (file)
@@ -131,7 +131,7 @@ uint8_t ascii2bit6(uint8_t a){
 
 #endif
 
-int base64_binlength(charstr, uint8_t strict){
+int base64_binlength(char *str, uint8_t strict){
        int l=0;
        uint8_t term=0;
        for(;;){
@@ -187,7 +187,7 @@ int base64_binlength(char* str, uint8_t strict){
 
 */
 
-int base64dec(void* dest, const 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;