aboutsummaryrefslogtreecommitdiff
path: root/utils.h
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2021-09-23 17:46:46 -0700
committerBruce Hill <bruce@bruce-hill.com>2021-09-23 17:46:46 -0700
commit1727d9b75c93051c3f46d3154256c8f3a78911a6 (patch)
treeeca8b0ca8f925f57bde2526013225dc2fcde15f9 /utils.h
parentc81601729ea2d1f7ef6aab14fec0e19ee326b740 (diff)
Use strncasecmp and memmem instead of custom logic.
Diffstat (limited to 'utils.h')
-rw-r--r--utils.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/utils.h b/utils.h
index 59fedf7..09b0c39 100644
--- a/utils.h
+++ b/utils.h
@@ -58,8 +58,6 @@ bool matchchar(const char **str, char c, bool skip_nl);
__attribute__((nonnull))
bool matchstr(const char **str, const char *target, bool skip_nl);
__attribute__((nonnull))
-int memicmp(const void *s1, const void *s2, size_t n);
-__attribute__((nonnull))
void delete(void *p);
#endif