aboutsummaryrefslogtreecommitdiff
path: root/src/util.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/util.h')
-rw-r--r--src/util.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/util.h b/src/util.h
index 7222dce..e00f68d 100644
--- a/src/util.h
+++ b/src/util.h
@@ -64,6 +64,12 @@ char *Trim(char *p);
int CompareString(const char *a, const char *b);
+/* Compare a character, but case insensitive. Returns TRUE for match, otherwise
+ FALSE.
+*/
+int CompareChar(char a, char b);
+
+
/* Compare the start of a string 'a' starts with string 'b', but case
insensitive. Returns TRUE for match, otherwise FALSE.
*/