Files
mir_server/sdk/utils/base64.h

18 lines
242 B
C
Raw 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