Share Pastebin
Guest
Public paste!

SoCo_cpp

By: a guest | Apr 16th, 2009 | Syntax: C | Size: 0.27 KB | Hits: 50 | Expires: Never
This paste has a previous version, view the difference. Copy text to clipboard
  1. int foo(int bar)
  2. {
  3.         if (!do_something( bar ))
  4.               return 0;
  5.         if (!init_stuff())
  6.               return 0;
  7.         if (!prepare_stuff())
  8.               return 0;
  9.         if (!do_the_thing( bar ))
  10.               return 0;
  11.         return 1;
  12. }