degesch: add & use strncasecmp_ascii()

This commit is contained in:
2015-06-02 21:28:41 +02:00
parent a6782e5e60
commit 897bb00af1
2 changed files with 13 additions and 2 deletions

View File

@@ -70,6 +70,17 @@ str_vector_find (const struct str_vector *v, const char *s)
return -1;
}
static int
strncasecmp_ascii (const char *a, const char *b, size_t n)
{
int x;
while (n-- && (*a || *b))
if ((x = tolower_ascii (*(const unsigned char *) a++)
- tolower_ascii (*(const unsigned char *) b++)))
return x;
return 0;
}
// --- Logging -----------------------------------------------------------------
static void