mirror of
https://github.com/reactos/reactos.git
synced 2024-11-07 15:10:53 +00:00
c501d8112c
svn path=/branches/aicom-network-fixes/; revision=34994
18 lines
222 B
C
18 lines
222 B
C
/* $Id$
|
|
*/
|
|
|
|
#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 */
|