update for HEAD-2003091401
[reactos.git] / lib / crtdll / tchar / strninc.c
1 #include <msvcrt/string.h>
2 #include <msvcrt/stdlib.h>
3
4 /*
5  * @implemented
6  */
7 char * _strninc(const char *str, size_t inc)
8
9         return (char *)(str + inc); 
10 }