BSD 4_1c_2 release
[unix-history] / usr / src / lib / libc / gen / index.c
/* @(#)index.c 4.1 (Berkeley) 12/21/80 */
/*
* Return the ptr in sp at which the character c appears;
* NULL if not found
*/
#define NULL 0
char *
index(sp, c)
register char *sp, c;
{
do {
if (*sp == c)
return(sp);
} while (*sp++);
return(NULL);
}