diff options
Diffstat (limited to 'string.c')
-rw-r--r-- | string.c | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -27,6 +27,7 @@ #include <sys/types.h> #include <stdbool.h> #include <stdlib.h> +#include <ctype.h> #include "error.h" #include "mig_string.h" @@ -77,3 +78,13 @@ strstring(const_string_t string) else return string; } + +char * +strupper(const_string_t string) +{ + string_t upper = strmake(string); + + for (int i=0; i<strlen(upper); i++) + upper[i] = toupper(upper[i]); + return upper; +} |