helos1/runtime/string.c
2021-10-10 14:39:17 +08:00

11 lines
116 B
C

#include <string.h>
size_t strlen(const char *s) {
size_t len = 0;
while (*(s++) != 0)
len++;
return len;
}