Improved unicode fileio support.
[reactos.git] / reactos / lib / msvcrt / wstring / wcsupr.c
1 #include <msvcrt/ctype.h>
2 #include <msvcrt/string.h>
3
4 wchar_t *_wcsupr(wchar_t *x)
5 {
6 wchar_t *y = x;
7
8 while (*y) {
9 *y = towupper(*y);
10 y++;
11 }
12 return x;
13 }