Skip to content

Instantly share code, notes, and snippets.

@akaita
Last active August 19, 2019 21:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save akaita/ee485e1f7695ce5ed36b9f1f8faf2f51 to your computer and use it in GitHub Desktop.
Save akaita/ee485e1f7695ce5ed36b9f1f8faf2f51 to your computer and use it in GitHub Desktop.
if ( function_A() == OK )
{
if ( function_B() == OK )
{
/* Normal completion stuff */
}
else
{
/* some error recovery for Function_B */
}
}
else
{
/* some error recovery for Function_A */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment