1 2 3 4 5 6 7 8
#ifndef BASE64_H #define BASE64_H #include <stdlib.h> void base64_decode(const char *src, char *dest, size_t dest_len); #endif