00001 /* 00002 * This code implements the BASE64 algorithm. 00003 * This code is in the public domain; do with it what you wish. 00004 * 00005 * @file base64.c 00006 * @brief This code implements the BASE64 algorithm 00007 * @author Matthieu Speder 00008 */ 00009 #ifndef BASE64_H 00010 #define BASE64_H 00011 00012 #include "platform.h" 00013 00014 char * 00015 BASE64Decode(const char* src); 00016 00017 #endif /* !BASE64_H */