vitimiti

Allman (ANSI)

Aug 18th, 2015
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.15 KB | None | 0 0
  1. // Allman (ANSI) indentation style
  2.  
  3. int Foo(bool isBar)
  4. {
  5.     if (isBar)
  6.     {
  7.         bar();
  8.         return 1;
  9.     }
  10.     else
  11.         return 0;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment