fehQlibs 26
Qlibs
Loading...
Searching...
No Matches
base64.h
Go to the documentation of this file.
1#ifndef BASE64_H
2#define BASE64_H
3
4#include "stralloc.h"
5
6extern int b64decode(const unsigned char *in, int l, stralloc *out);
7extern int b64encode(stralloc *in, stralloc *out);
8
9#endif
int b64encode(stralloc *in, stralloc *out)
Definition: base64.c:91
int b64decode(const unsigned char *in, int l, stralloc *out)
Definition: base64.c:17