mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-29 19:26:33 +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;
|
|
}
|