Advertisement
Guest User

Untitled

a guest
May 20th, 2018
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.26 KB | None | 0 0
  1. void my_func()
  2. {
  3.     // Initialise stuff
  4.     if(!stuff)
  5.     {
  6.         goto cleanup;
  7.     }
  8.  
  9.     // Do some more stuff
  10.     if(x)
  11.     {
  12.     }
  13.     else
  14.     {
  15.         goto cleanup;
  16.     }
  17.  
  18.     // Do some more stuff
  19.  
  20.     cleanup:
  21.     // Do cleanup
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement