12 lines
158 B
C
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;
|
|
}
|