Qsmtp  0.30dev
base64.h
Go to the documentation of this file.
1 
4 #ifndef BASE64_H
5 #define BASE64_H
6 
7 #include "sstring.h"
8 
9 extern int b64decode(const char *in, size_t l, string *out) __attribute__ ((nonnull (3)));
10 extern int b64encode(const string *in, string *out, const unsigned int wraplimit) __attribute__ ((nonnull (1,2)));
11 
12 #endif
definition of string record and headers of corresponding helper functions
int b64decode(const char *in, size_t l, string *out)
Definition: base64.c:36
int b64encode(const string *in, string *out, const unsigned int wraplimit)
Definition: base64.c:118