mirror of /home/gitosis/repositories/libowfat.git
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.
13 lines
220 B
13 lines
220 B
![]()
22 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;
|
||
|
}
|