// our own stuff for stl utilities unsigned strlen(const char* str) { unsigned idx = 0; while(str[idx]) idx++; return idx; }