Use free Windows DDK and compile with latest MinGW releases.
[reactos.git] / reactos / lib / msvcrt / mbstring / mbsninc.c
1 #include <msvcrti.h>
2
3
4 unsigned char * _mbsninc(const unsigned char *str, size_t n)
5 {
6 unsigned char *s = (unsigned char *)str;
7 while(*s != 0 && n > 0) {
8 if (!_ismbblead(*s) )
9 n--;
10 s++;
11 }
12
13 return s;
14 }