byte strzlen(pointer str) { byte index index = 0 while str[index] != 0 { index += 1 } return index }