view target-utils/libc/index.c @ 386:bae0fd7285dd

sms-pdu-decode: added -p option to keep the raw PDUs in the output
author Mychaela Falconia <falcon@freecalypso.org>
date Fri, 09 Mar 2018 22:15:43 +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 */
}