mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-04 08:17:17 -05:00
0fea79cc8f
Likely some new bugs were introduced by this change. The long term goal is clean compilation by g++.
19 lines
279 B
C
19 lines
279 B
C
#ifndef EL__UTIL_BASE64_H
|
|
#define EL__UTIL_BASE64_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
char *base64_encode(char *);
|
|
char *base64_decode(char *);
|
|
|
|
char *base64_encode_bin(char *, int, int *);
|
|
char *base64_decode_bin(char *, int, int *);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|