mirror of
https://github.com/rkd77/elinks.git
synced 2024-12-04 14:46:47 -05:00
19 lines
291 B
C
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
|