Created
May 19, 2020 01:06
-
-
Save cosinekitty/fe95ec8ea7859241103024735355192b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int main() | |
{ | |
/*... blah blah blah ...*/ | |
if (error1) | |
goto handle_error; /* YUCK! */ | |
if (error2) | |
{ | |
handle_error: | |
free(line); | |
fclose(infile); | |
return 1; | |
} | |
/*... more stuff... */ | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment