2005-04-23 15:50:16 +00:00
|
|
|
#undef __dietlibc__
|
2001-02-02 17:54:47 +00:00
|
|
|
#include "str.h"
|
|
|
|
|
2003-08-26 17:58:14 +00:00
|
|
|
unsigned long str_len(const char* in) {
|
2001-02-02 17:54:47 +00:00
|
|
|
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;
|
|
|
|
}
|