#include /* Find length of string */ size_t strlen(const char *str) { if (!str) return 0; size_t i; for (i = 0; str[i]; i++); return i; }