libowfat/str/str_rchr.c
2001-02-02 17:54:47 +00:00

15 lines
392 B
C

#include "str.h"
unsigned int str_rchr(const char *in, char needle) {
register const char* t=in;
register const char c=needle;
register const char* found=0;
for (;;) {
if (!*t) break; if (*t==c) found=t; ++t;
if (!*t) break; if (*t==c) found=t; ++t;
if (!*t) break; if (*t==c) found=t; ++t;
if (!*t) break; if (*t==c) found=t; ++t;
}
return (found?found:t)-in;
}