man-pages/man3/fmax.3

23 lines
549 B
Groff
Raw Normal View History

2004-11-03 13:51:07 +00:00
.\" Copyright 2002 Walter Harms (walter.harms@informatik.uni-oldenburg.de)
.\" Distributed under GPL
.\"
.TH FMAX 3 2002-07-28 "" "Linux Programmer's Manual"
2004-11-03 13:51:07 +00:00
.SH NAME
fmax, fmaxf, fmaxl \- find maximum value
2004-11-03 13:51:07 +00:00
.SH SYNOPSIS
.B #include <math.h>
.sp
.BI "double fmax(double " x ", double " y );
.br
2004-11-03 13:51:07 +00:00
.BI "float fmaxf(float " x ", float " y );
.br
2004-11-03 13:51:07 +00:00
.BI "long double fmaxl(long double " x ", long double " y );
.sp
2005-07-06 07:41:37 +00:00
Compile with \-std=c99; link with \-lm.
2004-11-03 13:51:07 +00:00
.SH DESCRIPTION
Find the larger value of x and y.
.SH "CONFORMING TO"
C99
.SH "SEE ALSO"
.BR fmin (3)