summaryrefslogtreecommitdiff
path: root/utils/utils.h
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2016-04-20 23:38:08 +0100
committerVincent Sanders <vince@kyllikki.org>2016-04-20 23:38:08 +0100
commitdd31499bf969baa68e66fca81b9f95447b6f3f2a (patch)
treefac0255aa3b4b3b696a2573a51e8469843db051d /utils/utils.h
parent7ba291037b1dbd0cd205ba07e6444293596a3761 (diff)
downloadnetsurf-dd31499bf969baa68e66fca81b9f95447b6f3f2a.tar.gz
netsurf-dd31499bf969baa68e66fca81b9f95447b6f3f2a.tar.bz2
move remove underscores utility to alongside the single gtk call site
Diffstat (limited to 'utils/utils.h')
-rw-r--r--utils/utils.h9
1 files changed, 0 insertions, 9 deletions
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).