summaryrefslogtreecommitdiffstats
path: root/src/pacman/util.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/pacman/util.c')
-rw-r--r--src/pacman/util.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/pacman/util.c b/src/pacman/util.c
index b9ee8c9c..e4e44c63 100644
--- a/src/pacman/util.c
+++ b/src/pacman/util.c
@@ -312,19 +312,6 @@ void indentprint(const char *str, size_t indent)
free(wcstr);
}
-/* Convert a string to uppercase
- */
-char *strtoupper(char *str)
-{
- char *ptr = str;
-
- while(*ptr) {
- (*ptr) = (char)toupper((unsigned char)*ptr);
- ptr++;
- }
- return str;
-}
-
/* Trim whitespace and newlines from a string
*/
char *strtrim(char *str)