mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 16:03:00 +00:00
18 lines
158 B
C
18 lines
158 B
C
![]() |
#include <string.h>
|
||
|
#include <ctype.h>
|
||
|
|
||
|
|
||
|
/*
|
||
|
* @implemented
|
||
|
*/
|
||
|
char *_strupr(char *x)
|
||
|
{
|
||
|
char *y=x;
|
||
|
|
||
|
while (*y) {
|
||
|
*y=toupper(*y);
|
||
|
y++;
|
||
|
}
|
||
|
return x;
|
||
|
}
|