1 #include <lib9.h> 2 3 long strlen(char * s)4 strlen(char *s) 5 { 6 7 return strchr(s, 0) - s; 8 } 9