This website requires JavaScript.
Explore
Help
Sign In
bumbread
/
ciabatta
mirror of
https://github.com/flysand7/ciabatta.git
Watch
1
Fork
You've already forked ciabatta
0
Code
Issues
Packages
Projects
Releases
Wiki
Activity
d873ab18ef
ciabatta
/
code
/
math
/
fmax.c
13 lines
146 B
C
Raw
Blame
History
double
fmax
(
double
x
,
double
y
)
{
if
(
x
>
y
)
return
x
;
return
y
;
}
float
fmaxf
(
float
x
,
float
y
)
{
if
(
x
>
y
)
return
x
;
return
y
;
}
Reference in New Issue
View Git Blame
Copy Permalink