tcsnlen.h

来自「ReactOS是一些高手根据Windows XP的内核编写出的类XP。内核实现机」· C头文件 代码 · 共 19 行

H
19
字号
/* $Id: tcsnlen.h 26099 2007-03-14 20:30:32Z ion $
 */

#include <stddef.h>
#include <tchar.h>

int _tcsnlen(const _TCHAR * str, size_t count)
{
 const _TCHAR * s;

 if(str == 0) return 0;

 for(s = str; *s && count; ++ s, -- count);

 return s - str;
}

/* EOF */

⌨️ 快捷键说明

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