Files

17 lines
251 B
C
Raw Permalink Normal View History

2025-01-09 17:45:40 +08:00
#ifndef _BASE64_H_
#define _BASE64_H_
//#ifdef __cplusplus
//extern "C"
//{
//#endif
int base64_encode(char *out, const char *data, int insize);
int base64_decode(char *out, const char *bdata, int insize);
//#ifdef __cplusplus
//}
//#endif
#endif