xref: /reactos/sdk/lib/crt/wstring/wcsupr.c (revision 8a978a17)
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  */
16 wchar_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 }
26