Go to the documentation of this file.00001 #include <mbstring.h>
00002
00003
00004
00005
00006 unsigned char * _mbsinc(const unsigned char *s)
00007 {
00008 unsigned char *c = (unsigned char *)s;
00009 if (_ismbblead(*s) )
00010 c++;
00011 c++;
00012 return c;
00013 }