📄 utf8.h
字号:
/************************************************** * * utf8.h * * CVS ID: $Id: utf8.h,v 1.6 2006/09/18 09:55:22 belardi Exp $ * Author: Ondrej Trubac [OT] - STM * Date: $Date: 2006/09/18 09:55:22 $ * Revision: $Revision: 1.6 $ * * Description: * * Widechar/UTF8 conversion functions * *************************************************** * * COPYRIGHT (C) ST Microelectronics 2005 * All Rights Reserved * **************************************************** * * STM CVS Log: * * $Log: utf8.h,v $ * Revision 1.6 2006/09/18 09:55:22 belardi * Corrected CVS keyword usage * * Revision 1.5 2006/09/18 09:24:02 belardi * Added Log CVS keyword into file header * * ***************************************************/#ifndef DEFINE_UTF8_H#define DEFINE_UTF8_Htypedef struct{ int be; int trunc; int limit;}t_conv_param;GRESULT WideStringToUTF8(uint8 *wide, uint8 *utf, uint8 wlength, t_conv_param *p);GRESULT WideFileNameToUTF8(uint8 *wide, uint8 *utf, uint8 wlength, t_conv_param *p);uint8 wc2utf8(uint16 wch, uint8 **pt);#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -