Skip to content

Instantly share code, notes, and snippets.

@vinipsmaker
Last active December 25, 2015 13:49
Show Gist options
  • Save vinipsmaker/6986106 to your computer and use it in GitHub Desktop.
Save vinipsmaker/6986106 to your computer and use it in GitHub Desktop.
struct Val
{
int answer;
};
int f(struct Val *val)
{
if (val && (val->answer != 42))
return val->answer;
return 42;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment