source:
ogServer-Git/sources/utils.c
@
4397ea8
Last change on this file since 4397ea8 was f4e7832, checked in by , 5 years ago | |
---|---|
|
|
File size: 203 bytes |
Line | |
---|---|
1 | #include <ctype.h> |
2 | #include "utils.h" |
3 | |
4 | const char *str_toupper(char *str) |
5 | { |
6 | char *c = str; |
7 | |
8 | while (*c) { |
9 | *c = toupper(*c); |
10 | c++; |
11 | } |
12 | |
13 | return str; |
14 | } |
Note: See TracBrowser
for help on using the repository browser.