1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-11-04 08:17:17 -05:00
elinks/src/util/base64.h
Witold Filipczyk 0fea79cc8f [cflags] Removed -Wno-pointer-sign
Likely some new bugs were introduced by this change.
The long term goal is clean compilation by g++.
2021-01-02 16:20:27 +01:00

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