pastebin
| #1 paste tool since 2002
create new paste
tools
api
archive
real-time
faq
pastebin
Follow @pastebin
create new paste
trending pastes
sign up
login
my settings
my profile
My Pastes
Public Pastes
Untitled
2 sec ago
Easy way to dismiss key...
5 sec ago
Untitled
9 sec ago
Untitled
15 sec ago
Untitled
18 sec ago
Untitled
21 sec ago
Untitled
24 sec ago
Untitled
XML | 26 sec ago
Layout Width
Share Pastebin
pwet
By: a guest | Apr 16th, 2009 | Syntax:
C
| Size: 0.17 KB | Hits: 141 | Expires: Never
Download
|
Raw
|
Embed
|
Report abuse
This paste has a previous version,
view the difference
.
int
foo
(
int
bar
)
{
if
(
do_something
(
bar
)
&&
init_stuff
(
bar
)
&&
prepare_stuff
(
bar
)
)
{
return
do_the_thing
(
bar
)
;
}
return
0
;
}
create new paste
|
create new version of this paste
RAW Paste Data
int foo(int bar) { if( do_something(bar) && init_stuff(bar) && prepare_stuff(bar) ){ return do_the_thing( bar ); } return 0; }