@node stricmp, string @subheading Syntax @example #include int stricmp(const char *s1, const char *s2); @end example @subheading Description This function compares the two strings, disregarding case. @subheading Return Value Zero if they're the same, nonzero if different, the sign indicates "order". @subheading Portability @portability !ansi, !posix @subheading Example @example if (stricmp(arg, "-i") == 0) do_include(); @end example