aboutsummaryrefslogtreecommitdiff
path: root/str_len.c
blob: 8411ebf6b3cf5f5dd0c1f806bd0abe547be6ce9b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "str.h"

unsigned int str_len(const char *s)
{
  register const char *t;

  t = s;
  for (;;) {
    if (!*t) return t - s; ++t;
    if (!*t) return t - s; ++t;
    if (!*t) return t - s; ++t;
    if (!*t) return t - s; ++t;
  }
}