windows-nt/Source/XPSP1/NT/base/subsys/posix/programs/bsdlib/index.c
2020-09-26 16:20:57 +08:00

14 lines
145 B
C

/*
* Index: Not Posix. AOJ
*/
#include <stdio.h>
char *index (s, c)
char *s, c;
{
for ( ; *s && *s != c; s++ );
return *s ? s : NULL;
}