1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-29 01:45:34 +00:00
elinks/src/util/base64.h

19 lines
291 B
C

#ifndef EL__UTIL_BASE64_H
#define EL__UTIL_BASE64_H
#ifdef __cplusplus
extern "C" {
#endif
char *base64_encode(char *);
char *base64_decode(const char *);
char *base64_encode_bin(char *, int, int *);
char *base64_decode_bin(const char *, int, int *);
#ifdef __cplusplus
}
#endif
#endif