示例#1
0
 this_type 
 camelize() const
 {
   this_type ret;
   camelize(ret);
   return ret;
 }
示例#2
0
int main(void) {
  char *s;

  printf("%s\n", s = camelize("camels are sweet and clever animals"));
  free(s);

  return 0;
}