source: ogServer-Git/sources/utils.c @ 75a8d47

Last change on this file since 75a8d47 was f4e7832, checked in by OpenGnSys Support Team <soporte-og@…>, 4 years ago

#971 add str_toupper()

Add new utils.c file and replace old StrToUpper?().

  • Property mode set to 100644
File size: 203 bytes
Line 
1#include <ctype.h>
2#include "utils.h"
3
4const 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.