mirror of /home/gitosis/repositories/libowfat.git
Mirror of :pserver:cvs@cvs.fefe.de:/cvs libowfat
https://www.fefe.de/libowfat/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
393 B
14 lines
393 B
#include "str.h" |
|
|
|
unsigned long 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; |
|
}
|
|
|