wcsrchr是一種函式,即Scan a string for the last occurrence of a character,功能是從一個字元串中尋找某個字元最後出現的位置。
基本介紹
- 中文名:wcsrchr
函式聲明,返回值,
函式聲明
:
char *strrchr( const char *string, int c );
wchar *wcsrchr( const wchar_t *string, int c );
string Null-terminated string to search. 目的字元串
c Character to be located. 要尋找的字元
返回值
Each of these functions returns a pointer to the last occurrence of c in string, or NULL if c is not found.
當存在此字元時返回指向此字元的指針,當不存在時返回NULL。