summaryrefslogtreecommitdiff
path: root/userland/libc/string/strlen.c
blob: 8e3e77a69370e5cc8f81f89bf84ba82a9678d7d4 (plain)
1
2
3
4
5
6
7
8
#include <string.h>

size_t strlen(const char *s) {
  const char *d = s;
  for (; *s; s++)
    ;
  return s - d;
}