413f585b21a0db73f6fc929bbccb15f167c6ba94
[reactos.git] / lib / msvcrt / string / strupr.c
1 /*
2  * The C RunTime DLL
3  * 
4  * Implements C run-time functionality as known from UNIX.
5  *
6  * Copyright 1996,1998 Marcus Meissner
7  * Copyright 1996 Jukka Iivonen
8  * Copyright 1997 Uwe Bonnes
9  */
10
11
12 #include <msvcrt/string.h>
13 #include <msvcrt/ctype.h>
14
15 /*
16  * @implemented
17  */
18 char *_strupr(char *x)
19 {
20         char  *y=x;
21
22         while (*y) {
23                 *y=toupper(*y);
24                 y++;
25         }
26         return x;
27 }