summaryrefslogtreecommitdiff
path: root/utils.h
diff options
context:
space:
mode:
Diffstat (limited to 'utils.h')
-rw-r--r--utils.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/utils.h b/utils.h
index 36288f7..4bf5825 100644
--- a/utils.h
+++ b/utils.h
@@ -120,13 +120,9 @@ extern void uInternalError(const char *s, ...);
#define uStrCaseEqual(s1,s2) (uStrCaseCmp(s1,s2)==0)
#ifdef HAVE_STRCASECMP
#define uStrCaseCmp(s1,s2) (strcasecmp(s1,s2))
-#define uStrCasePrefix(p,s) (strncasecmp(p,s,strlen(p))==0)
#else
extern int uStrCaseCmp(const char * /* s1 */ ,
const char * /* s2 */);
-
-extern int uStrCasePrefix(const char * /* p */ ,
- const char * /* str */);
#endif
#ifdef HAVE_STRDUP
#define uStringDup(s1) (strdup(s1))