stristr - search for string in other string case independent
#include <mystring.h>
char *
stristr(const char *s1, const char *s2)
The stristr() function searches in a case independent manner for the first occurrence of the string s2 in the string s1. It just differs from strstr(3) that it does the comparison in a case independent manner.
A pointer to the first occurrence is returned else NULL.
strncmp(3) , strnicmp(3) , strstr(3)
The stristr() function is part of MCNTP, the diploma thesis Transport of NetNews via IP-multicast of the author.
Heiko W.Rupp (hwr@pilhuhn.de)
None known yet. If you find any, then please report them to <mcntpbugs@pilhuhn.de>
$Id: stristr.3.html,v 1.5 2001/11/22 10:24:37 pilhuhn Exp $