Added binary and unicode file i/o support to msvcrt.
[reactos.git] / reactos / lib / crtdll / tchar / strnextc.c
1 #include <msvcrt/tchar.h>
2
3 int _strnextc(const char *str)
4 {
5 return *(++str);
6 }