summaryrefslogtreecommitdiff
path: root/str_len.c
diff options
context:
space:
mode:
Diffstat (limited to 'str_len.c')
-rw-r--r--str_len.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/str_len.c b/str_len.c
new file mode 100644
index 0000000..dedd005
--- /dev/null
+++ b/str_len.c
@@ -0,0 +1,16 @@
1/* Public domain. */
2
3#include "str.h"
4
5unsigned int str_len(const char *s)
6{
7 register const char *t;
8
9 t = s;
10 for (;;) {
11 if (!*t) return t - s; ++t;
12 if (!*t) return t - s; ++t;
13 if (!*t) return t - s; ++t;
14 if (!*t) return t - s; ++t;
15 }
16}