#include #ifndef __SUPPORT_ARCH_SH size_t strlen(char const *s) { size_t i = 0; while(s[i]) i++; return i; } #endif /*__SUPPORT_ARCH_SH*/