view target-utils/libc/rindex.c @ 583:2823fd5351f8

openmoko/modem-power-ctrl.sh: replacement for old hard-coded special case
author Mychaela Falconia <falcon@freecalypso.org>
date Mon, 03 Feb 2020 01:50:55 +0000
parents 7fb62fc724dc
children
line wrap: on
line source

char *
rindex(p, ch)
	register char *p, ch;
{
	register char *save;

	for (save = 0;; ++p) {
		if (*p == ch)
			save = p;
		if (!*p)
			return(save);
	}
	/* NOTREACHED */
}