ReactOS 0.4.15-dev-7842-g558ab78
wcsupr.c
Go to the documentation of this file.
1/*
2 * COPYRIGHT: See COPYING in the top level directory
3 * PROJECT: ReactOS system libraries
4 * FILE: lib/sdk/crt/wstring/wcsupr.c
5 * PURPOSE: Unknown
6 * PROGRAMER: Unknown
7 * UPDATE HISTORY:
8 * 25/11/05: Added license header
9 */
10
11#include <precomp.h>
12
13/*
14 * @implemented
15 */
16wchar_t * CDECL _wcsupr(wchar_t *x)
17{
18 wchar_t *y = x;
19
20 while (*y) {
21 *y = towupper(*y);
22 y++;
23 }
24 return x;
25}
#define CDECL
Definition: compat.h:29
GLint GLint GLint GLint GLint x
Definition: gl.h:1548
GLint GLint GLint GLint GLint GLint y
Definition: gl.h:1548
#define towupper(c)
Definition: wctype.h:99
wchar_t *CDECL _wcsupr(wchar_t *x)
Definition: wcsupr.c:16