Skip to content

Instantly share code, notes, and snippets.

@larytet
Created September 17, 2018 19:03
Show Gist options
  • Save larytet/1b4880f79c04f12be447d8c128034563 to your computer and use it in GitHub Desktop.
Save larytet/1b4880f79c04f12be447d8c128034563 to your computer and use it in GitHub Desktop.
float get(obj* v, bool* ok) {
float c;
if(v->valid) {
*ok = true;
c = v->a + v->b;
}
else {
*ok = false; //not ok, so don't expect anything from c
}
return c;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment