linuxOS_AP06/app/lvgl_demo/rk_demo/include/RK_encode.h
2025-06-03 12:28:32 +08:00

17 lines
295 B
C

#ifndef __RK_ENCODE_H__
#define __RK_ENCODE_H__
#ifdef __cplusplus
extern "C" {
#endif
int RK_encode_is_utf8(char *buffer, const int size);
int RK_encode_gbk_to_utf8(char *src, int len, char *dst);
int RK_encode_utf8_to_gbk(char *src, int len, char *dst);
#ifdef __cplusplus
}
#endif
#endif