char *kstrchr(
const char *istr,
int character)
none
none
char *s1 = "Hello World.";
char *result;
result = kstrchr(s1, 'W');
kprintf("Goodbye Cruel %s\n", result);
The output string is 'Goodbye Cruel World.'
$BOOTSTRAP/objects/library/kutils/src/strings.c