void dump(char *s); char* next(char *s); char* test(char *s) { char *n = next(s); while (n) { dump(""); n = next(s); } n = next(s); while (n) { dump(""); n = next(s); } return s; }