summaryrefslogtreecommitdiff
path: root/src/include/base64.h
blob: 88c8543f82c998b4fe88cdf1c7b0ff0049226a34 (plain)
1
2
3
4
5
6
7
8
9
#ifndef BASE64_H
#define BASE64_H

#include "stralloc.h"

extern int b64decode(const unsigned char *, int, stralloc *);
extern int b64encode(stralloc *, stralloc *);

#endif