summaryrefslogtreecommitdiff
path: root/src/utils.h
diff options
context:
space:
mode:
authorRan Benita <ran234@gmail.com>2012-03-24 00:26:12 +0200
committerDaniel Stone <daniel@fooishbar.org>2012-03-27 14:13:24 +0100
commitf08ce9b71b08e8db846780b7187124da53ba1c3c (patch)
tree7b93c296eff4f27b67049695a6b734d943fb450e /src/utils.h
parent3104a8ef181622805f39eba608523eec51591944 (diff)
Use strcasecmp consistently instead of uStrCaseCmp
There's no use calling the same thing by a different name. Signed-off-by: Ran Benita <ran234@gmail.com>
Diffstat (limited to 'src/utils.h')
-rw-r--r--src/utils.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/utils.h b/src/utils.h
index 0b0582b..cbf3552 100644
--- a/src/utils.h
+++ b/src/utils.h
@@ -47,7 +47,6 @@ recalloc(void *ptr, size_t old_size, size_t new_size);
#define uDupString(s) ((s) ? strdup(s) : NULL)
#define uStringText(s) ((s) == NULL ? "<NullString>" : (s))
-#define uStrCaseCmp(s1, s2) strcasecmp(s1, s2)
#define uStrCasePrefix(s1, s2) (strncasecmp((s1), (s2), strlen(s1)) == 0)
/***====================================================================***/