Help for this page

Select Code to Download


  1. or download this
          /* ok, this could be done better but it's only a string ;-) */
          ret  = (char*) malloc(strlen(str) + strlen(str));
    
  2. or download this
      ret = (char*) malloc(strlen(str) * 2);
    
  3. or download this
        pret += 7;