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