Skip to content

Instantly share code, notes, and snippets.

@autarch
Last active December 22, 2015 07:59
Show Gist options
  • Save autarch/6441370 to your computer and use it in GitHub Desktop.
Save autarch/6441370 to your computer and use it in GitHub Desktop.
SomeStruct *foo = calloc(1, sizeof(SomeStruct));
SomeStruct_open(filename, foo);
// frees foo
SomeStruct_close(foo);
/*-----------------------------------------------*/
SomeStruct *foo;
SomeStruct_open(filename, &foo);
// frees foo
SomeStruct_close(foo);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment