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