Files
my-os-project2/ulib/string/string.c
2025-09-04 23:20:30 +02:00

12 lines
158 B
C

#include <stddef.h>
#include <string/string.h>
size_t string_len(const char *s) {
size_t l = 0;
while (*s != '\0') {
l++;
s++;
}
return l;
}