source:
admin/Sources/Services/ogAdmServer/sources/utils.c
@
d4daa34
Last change on this file since d4daa34 was ee54ba4, checked in by , 5 years ago | |
---|---|
|
|
File size: 203 bytes |
Rev | Line | |
---|---|---|
[ee54ba4] | 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.