Files
mir_server/sdk/utils/base64.h
aixianling 5c9f1dae4a init
2025-01-09 17:45:40 +08:00

18 lines
242 B
C

#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