int kstrcmp(
const char *istr1,
const char *istr2)
none
none
char *s1 = "John Doe";
char *s2 = "john DOE";
int result;
result = kstrcmp(s1, s2);
kprintf("The result is '%d'\n", result);
The result of this compare is -32 instead of 0,
since that is the result of the difference 'J' - 'j'.
$BOOTSTRAP/objects/library/kutils/src/strings.c