Ustring.h
上传用户:wealth48
上传日期:2022-06-24
资源大小:1701k
文件大小:0k
源码类别:

uCOS

开发平台:

C/C++

  1. #include "../inc/sysconfig.h"
  2. #if USE_MINIGUI==0
  3. #include "../inc/macro.h"
  4. //int 到Unicode字符串的转换
  5. void Int2Unicode(int number, U16 str[]);
  6. //Unicode字符串到int的转换
  7. int Unicode2Int(U16 str[]);
  8. //char类型包括GB编码,到Unicode的编码转换
  9. void strChar2Unicode(U16 ch2[], const char ch1[]);
  10. void UstrCpy(U16 ch1[],U16 ch2[]);
  11. #endif //#if USE_MINIGUI==0