]> git.cryptolib.org Git - avr-crypto-lib.git/blobdiff - base64/base64_dec.h
global style change (now * is attached to identifier not to type)
[avr-crypto-lib.git] / base64 / base64_dec.h
index 1c9f1d958d23e5604a408fed67a06c1c064ef348..0f9cb96edc8020841c5f0425186761680b18f14e 100644 (file)
@@ -23,7 +23,7 @@
 
 #include <stdint.h>
 
-int base64_binlength(charstr, uint8_t strict);
-int base64dec(void* dest, const char* b64str, uint8_t strict);
+int base64_binlength(char *str, uint8_t strict);
+int base64dec(void *dest, const char *b64str, uint8_t strict);
 
 #endif /*BASE64_DEC_H_*/