📄 wcslen.c
字号:
/***
*wcslen.c - contains wcslen() routine
*
* Copyright (c) 1985-1997, Microsoft Corporation. All rights reserved.
*
*Purpose:
* wcslen returns the length of a null-terminated wide-character string,
* not including the null wchar_t itself.
*
*******************************************************************************/
#include <cruntime.h>
#include <string.h>
/***
*wcslen - return the length of a null-terminated wide-character string
*
*Purpose:
* Finds the length in wchar_t's of the given string, not including
* the final null wchar_t (wide-characters).
*
*Entry:
* const wchar_t * wcs - string whose length is to be computed
*
*Exit:
* length of the string "wcs", exclusive of the final null wchar_t
*
*Exceptions:
*
*******************************************************************************/
size_t __cdecl wcslen (
const wchar_t * wcs
)
{
const wchar_t *eos = wcs;
while( *eos++ ) ;
return( (size_t)(eos - wcs - 1) );
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -