mirror of https://github.com/nealey/eris.git
14 lines
301 B
C
14 lines
301 B
C
|
#include "str.h"
|
||
|
|
||
|
unsigned int str_chr(const char *in, char needle) {
|
||
|
register const char* t=in;
|
||
|
register const char c=needle;
|
||
|
for (;;) {
|
||
|
if (!*t || *t==c) break; ++t;
|
||
|
if (!*t || *t==c) break; ++t;
|
||
|
if (!*t || *t==c) break; ++t;
|
||
|
if (!*t || *t==c) break; ++t;
|
||
|
}
|
||
|
return t-in;
|
||
|
}
|