blob: ba96ca0c719aab2c4e5531d58e67752d42b3a628 [file] [log] [blame]
/*
* This code implements the BASE64 algorithm.
* This code is in the public domain; do with it what you wish.
*
* @file base64.c
* @brief This code implements the BASE64 algorithm
* @author Matthieu Speder
*/
#ifndef BASE64_H
#define BASE64_H
#include "platform.h"
char *
BASE64Decode(const char* src);
#endif /* !BASE64_H */