Help for this page

Select Code to Download


  1. or download this
    char * string;
    string = my_foo();
    // Do stuff
    free(string);
    
  2. or download this
    void foo_free(char * string) {
         free(string);
    }