diff options
Diffstat (limited to '')
-rw-r--r-- | src/utils.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/utils.h b/src/utils.h index 09a9bc4e8..258b725f3 100644 --- a/src/utils.h +++ b/src/utils.h @@ -34,7 +34,9 @@ char *myFgets(char *buffer, int bufferSize, FILE * fp); -char *strDupToUpper(char *str); +char *string_toupper(char *str); + +char *strDupToUpper(char *str); /* avoid, use string_toupper instead */ void stripReturnChar(char *string); |