view target-utils/libc/index.c @ 94:cbc6bc05d494

target-utils/Makefile: libc added to the dependencies
author Mychaela Falconia <falcon@freecalypso.org>
date Mon, 31 Oct 2016 21:33:05 +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 */
}