blob: 0f318c4043ea8ac0a67f2b349a658d93ed41625f (
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 *in, int l, stralloc *out);
extern int b64encode(stralloc *in, stralloc *out);
#endif
|