view target-utils/libc/rindex.c @ 463:131eefcbe4d7

doc/Loadtools-usage: refer to Flash-boot-wa article when explaining the extension of fc-iram to support second program invokation
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 10 Feb 2019 22:04:49 +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 */
}