You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
639 B
C
26 lines
639 B
C
#include "str.h"
|
|
|
|
size_t 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 (size_t)((found?found:t)-in);
|
|
}
|