aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/base64.h
blob: a489dc6908e218f2fd8e19e703298eac2226e07a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 * 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

char *
BASE64Decode (const char *src);

#endif /* !BASE64_H */