ref: 992fd380a19def81095e9d5fed9b924e97da4145 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; }