Sync/kernel/utils.c
2019-04-03 17:46:58 -04:00

8 lines
122 B
C

#include <stddef.h>
size_t strlen(const char* string) {
size_t size = 0;
while (string[size])
size++;
return size;
}