summaryrefslogtreecommitdiffstats
path: root/sources/utils.c
blob: 4aa76f8b8e423c789c4dbb0fd62d21d793bed076 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <ctype.h>
#include "utils.h"

const char *str_toupper(char *str)
{
       char *c = str;

       while (*c) {
               *c = toupper(*c);
               c++;
       }

       return str;
}