summaryrefslogtreecommitdiffstats
path: root/lib/libalpm/util.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libalpm/util.c')
-rw-r--r--lib/libalpm/util.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/lib/libalpm/util.c b/lib/libalpm/util.c
index b1c3a402..9d4adb2d 100644
--- a/lib/libalpm/util.c
+++ b/lib/libalpm/util.c
@@ -251,19 +251,6 @@ int _alpm_copyfile(const char *src, const char *dest)
return(0);
}
-/* Convert a string to uppercase
-*/
-char *_alpm_strtoupper(char *str)
-{
- char *ptr = str;
-
- while(*ptr) {
- (*ptr) = toupper(*ptr);
- ptr++;
- }
- return(str);
-}
-
/* Trim whitespace and newlines from a string
*/
char *_alpm_strtrim(char *str)