Mercurial > hg > Applications > mh
view sbr/r1bindex.c @ 3:f89a9a79e124
utf-8
author | kono |
---|---|
date | Wed, 20 Apr 2005 00:25:01 +0900 |
parents | bce86c4163a3 |
children |
line wrap: on
line source
/* r1bindex.c - right plus 1 or beginning index */ char *r1bindex(str, chr) register char *str; register int chr; { register char *cp; for (cp = str; *cp; cp++) continue; --cp; while (cp >= str && *cp != chr) --cp; return (++cp); }