Use free Windows DDK and compile with latest MinGW releases.
[reactos.git] / reactos / lib / msvcrt / mbstring / mbsinc.c
1 #include <msvcrti.h>
2
3
4 unsigned char * _mbsinc(const unsigned char *s)
5 {
6 unsigned char *c = (unsigned char *)s;
7 if (_ismbblead(*s) )
8 c++;
9 c++;
10 return c;
11 }