windows-nt/Source/XPSP1/NT/base/subsys/posix/programs/bsdlib/index.c

14 lines
145 B
C
Raw Normal View History

2020-09-26 03:20:57 -05:00
/*
* Index: Not Posix. AOJ
*/
#include <stdio.h>
char *index (s, c)
char *s, c;
{
for ( ; *s && *s != c; s++ );
return *s ? s : NULL;
}