view target-utils/libc/index.c @ 950:bdd92dba7dd9

doc/Rvinterf-tools: document rvinterf -X option
author Mychaela Falconia <falcon@freecalypso.org>
date Wed, 07 Jun 2023 07:51:49 +0000
parents 7fb62fc724dc
children
line wrap: on
line source

char *
index(p, ch)
	register char *p, ch;
{
	for (;; ++p) {
		if (*p == ch)
			return(p);
		if (!*p)
			return((char *)0);
	}
	/* NOTREACHED */
}