int kstrcasecmp(
const char *istr1,
const char *istr2)
none
none
char *s1 = "John Doe";
char *s2 = "john DOE";
int result;
result = kstrcasecmp(s1, s2);
kprintf("The result is '%d'\n", result);
The output that will be printed is 0.
$BOOTSTRAP/objects/library/kutils/src/strings.c