Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 7 of file memchr.c.
Referenced by __find(), CRYPT_AsnDecodeAltNameEntry(), discard_chunked_eol(), FileGetString(), FPropContainsProp(), gzgets(), CStringTest::import_checks(), read_line(), and read_stdin().
{ if (n) { const char *p = s; do { if (*p++ == c) return (void *)(p-1); } while (--n != 0); } return 0; }