summaryrefslogtreecommitdiffstats
path: root/src/base64.h
blob: b56b9db001a65e818651469a0921a9f09f6d94f1 (plain)
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