summaryrefslogtreecommitdiff
path: root/src/z-util.h
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2019-02-15 19:20:25 +0100
committerBardur Arantsson <bardur@scientician.net>2019-02-15 19:20:25 +0100
commitd4112fae1ea4496221892e2edd84ed99c3176463 (patch)
tree75a8601caaa9d315cf9f44d57087baded564291a /src/z-util.h
parent189a5137bc65bc0f618d5f9ae18f461159e3d7dc (diff)
Replace C-style string code with boost::algorithm::* equivalents
Diffstat (limited to 'src/z-util.h')
-rw-r--r--src/z-util.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/z-util.h b/src/z-util.h
index 10b4b8a4..bd9737bf 100644
--- a/src/z-util.h
+++ b/src/z-util.h
@@ -10,12 +10,6 @@ extern "C" {
extern void (*plog_aux)(const char *);
extern void (*quit_aux)(const char *);
-/* Test equality, prefix, suffix */
-bool_ streq(const char *s, const char *t);
-bool_ prefix(const char *s, const char *t);
-bool_ suffix(const char *s, const char *t);
-
-
/* Capitalize the first letter of string. Ignores whitespace at the start of string. */
void capitalize(char *s);