replace strcasecmp() with strcmp(). this also simlifies MSVC support a bit
diff --git a/utils.c b/utils.c
index 2dbe2ee..cece416 100644
--- a/utils.c
+++ b/utils.c
@@ -14,7 +14,7 @@
 
 	int c = 0;
 	for(l = list; *l; c++, l++) {
-		if (!strcasecmp(*l, s))
+		if (!strcmp(*l, s))
 			return c;
 	}
 
@@ -54,7 +54,7 @@
 	int i;
 
 	for (i = 0; i < max; i++) {
-		if (!strcasecmp(map[i].name, name)) {
+		if (!strcmp(map[i].name, name)) {
 			return map[i].id;
 		}
 	}