10 lines
103 B
C
10 lines
103 B
C
|
|
#ifndef _H_UTIL
|
|
#define _H_UTIL
|
|
|
|
void to_lowercase(char* str);
|
|
void to_uppercase(char* str);
|
|
|
|
#endif
|
|
|