index
:
csapp.git
master
Unnamed repository; edit this file 'description' to name the repository.
Mike Vink
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
3
/
6_control
/
cond.c
blob: 8b647bf82d4f16a4b692adcfbc1b7c5e6e1d51de (
plain
)
1
2
3
4
5
6
void
cond
(
short
a
,
short
*
p
)
{
if
(
a
&& *
p
<
a
) {
*
p
=
a
;
}
}