#include <string.h> int strcasecmp(const char *s1, const char *s2);
This function compares the two strings, disregarding case.
Zero if they're the same, nonzero if different, the sign indicates "order".
not ANSI, not POSIX
if (strcasecmp(arg, "-i") == 0) do_include();
Go to the first, previous, next, last section, table of contents.