8 lines
305 B
C
8 lines
305 B
C
#ifndef R_BASE64_H
|
|
#define R_BASE64_H
|
|
|
|
R_API int r_base64_encode(char *bout, const ut8 *bin, int len);
|
|
R_API int r_base64_decode(ut8 *bout, const char *bin, int len);
|
|
R_API ut8 *r_base64_decode_dyn(const char *in, int len);
|
|
R_API char *r_base64_encode_dyn(const char *str, int len);
|
|
#endif // R_BASE64_H
|