summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
Diffstat (limited to 'utils')
-rw-r--r--utils/utils.c22
-rw-r--r--utils/utils.h9
2 files changed, 0 insertions, 31 deletions
diff --git a/utils/utils.c b/utils/utils.c
index 19d5bf0d6..cde3fa306 100644
--- a/utils/utils.c
+++ b/utils/utils.c
@@ -43,28 +43,6 @@
#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)
{
char *c;
diff --git a/utils/utils.h b/utils/utils.h
index 6121ebe44..71316af1f 100644
--- a/utils/utils.h
+++ b/utils/utils.h
@@ -128,15 +128,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
* (0xC2 + 0xA0 in UTF-8 encoding).