]> git.cryptolib.org Git - avr-crypto-lib.git/blobdiff - base64/base64_dec.h
bug fixing and support for malloc instead of stack memory (some functions)
[avr-crypto-lib.git] / base64 / base64_dec.h
index 1c9f1d958d23e5604a408fed67a06c1c064ef348..c6fa343bf98fef321721af695b9b5cc5acdcccac 100644 (file)
  *   along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
-
 #ifndef BASE64_DEC_H_
 #define BASE64_DEC_H_
 
 #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_*/