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.
13 lines
220 B
C
13 lines
220 B
C
24 years ago
|
#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;
|
||
|
}
|