Files
Arquivotheca.Solaris-2.5/lib/libbc/libc/gen/common/index.c
seta75D 7c4988eac0 Init
2021-10-11 19:38:01 -03:00

22 lines
300 B
C
Executable File

#pragma ident "@(#)index.c 1.3 92/07/21 SMI"
/* from UCB 4.1 80/12/21 */
/*
* 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);
}