ref: 41850b088910e270b84f3a68b16c305556fa61a1 dir: /libc/src/strlen.c/
/* See LICENSE file for copyright and license details. */ #include <string.h> size_t strlen(const char *s) { size_t n = 0; while (*s++) ++n; return n; }