1 #include "lib9.h" 2 3 4 long runestrlen(Rune * s)5 runestrlen(Rune *s) 6 { 7 int i; 8 9 i = 0; 10 while(*s++) 11 i++; 12 return i; 13 } 14