reactos/reactos/lib/msvcrt/mbstring/mbstrlen.c
Eric Kohl 5cb6979b1a Added mbstring functions.
svn path=/trunk/; revision=2068
2001-07-18 09:20:23 +00:00

16 lines
No EOL
223 B
C

#include <msvcrt/mbstring.h>
#include <msvcrt/stdlib.h>
size_t _mbstrlen( const char *string )
{
char *s = (char *)string;
size_t i = 0;
while ( *s != 0 ) {
if ( _ismbblead(*s) )
s++;
s++;
i++;
}
return i;
}