Blame src/microhttpd/base64.h

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