de776d2d2917f4197959b3b85da3cdfdb27494b0
[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 }