view target-utils/libc/index.c @ 545:47ee7373010b

dspdump: added baud command
author Mychaela Falconia <falcon@freecalypso.org>
date Mon, 28 Oct 2019 21:23:24 +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 */
}