wchar.h

来自「ST5518机顶盒系统文件系统源代码!绝对超值!」· C头文件 代码 · 共 44 行

H
44
字号
/******************************************************************************File Name : wchar.hDescription: Local implementation of wchar.h******************************************************************************/#ifndef WCHAR_H#define WCHAR_H    /* Includes ------------------------------------------------------------ */#include <stddefs.h>#include <stdio.h>    /* Exported Types ------------------------------------------------------ */    /* Exported Constants -------------------------------------------------- */    /* Exported Variables -------------------------------------------------- */    /* Exported Macros ----------------------------------------------------- *//******************************************************************************Function Name : ExistSeparators  Description : Find the next file path separator in a wide string.                Returns whether one was found.   Parameters :******************************************************************************/#define ExistSeparators(wcs,pos) (-1 != (pos = wcschr2((wcs)+(pos),L'/',L'\\')))    /* Exported Function Prototypes ---------------------------------------- */wchar_t *wcscpy ( wchar_t *strDestination, const wchar_t *strSource ) ;int      wcslen ( const wchar_t *string ) ;int      wcsncmp ( const wchar_t *string1, const wchar_t *string2, int MaxLength) ;wchar_t *wcscvt (const char* input,wchar_t *output);int      wcschr (const wchar_t *ParsedString, wchar_t ElementToSearch) ;int      wcschr2(const wchar_t *ParsedString, wchar_t Element1, wchar_t Element2) ;/*****************************************************************************/#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?