this_type camelize() const { this_type ret; camelize(ret); return ret; }
int main(void) { char *s; printf("%s\n", s = camelize("camels are sweet and clever animals")); free(s); return 0; }