From dd31499bf969baa68e66fca81b9f95447b6f3f2a Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Wed, 20 Apr 2016 23:38:08 +0100 Subject: move remove underscores utility to alongside the single gtk call site --- utils/utils.c | 22 ---------------------- utils/utils.h | 9 --------- 2 files changed, 31 deletions(-) (limited to 'utils') diff --git a/utils/utils.c b/utils/utils.c index 19d5bf0d6..cde3fa306 100644 --- a/utils/utils.c +++ b/utils/utils.c @@ -42,28 +42,6 @@ #include "utils/dirent.h" #include "utils/utils.h" -/* exported interface documented in utils/utils.h */ -char *remove_underscores(const char *s, bool replacespace) -{ - size_t i, ii, len; - char *ret; - len = strlen(s); - ret = malloc(len + 1); - if (ret == NULL) { - return NULL; - } - for (i = 0, ii = 0; i < len; i++) { - if (s[i] != '_') { - ret[ii++] = s[i]; - } else if (replacespace) { - ret[ii++] = ' '; - } - } - ret[ii] = '\0'; - return ret; -} - - /* exported interface documented in utils/utils.h */ char *squash_whitespace(const char *s) { diff --git a/utils/utils.h b/utils/utils.h index 6121ebe44..71316af1f 100644 --- a/utils/utils.h +++ b/utils/utils.h @@ -127,15 +127,6 @@ struct dirent; */ char * squash_whitespace(const char * s); -/** - * returns a string without its underscores - * - * \param s The string to change. - * \param replacespace true to insert a space where there was an underscore - * \return The altered string - */ -char *remove_underscores(const char *s, bool replacespace); - /** * Converts NUL terminated UTF-8 encoded string s containing zero or more * spaces (char 32) or TABs (char 9) to non-breaking spaces -- cgit v1.2.3