1 2 3 4 5 6 7 8 9
#include <stdint.h> u32 strlen(char *str) { u32 len = 0; while (str[len]) len++; return len; }