memfd_secret.2: SEE ALSO: add memfd_create(2)
[man-pages.git] / man3 / frexp.3
blob4e6aabec22c03e8e815bb1310b9bcfcd8c21bfd2
1 .\" Copyright 1993 David Metcalfe (david@prism.demon.co.uk)
2 .\"
3 .\" %%%LICENSE_START(VERBATIM)
4 .\" Permission is granted to make and distribute verbatim copies of this
5 .\" manual provided the copyright notice and this permission notice are
6 .\" preserved on all copies.
7 .\"
8 .\" Permission is granted to copy and distribute modified versions of this
9 .\" manual under the conditions for verbatim copying, provided that the
10 .\" entire resulting derived work is distributed under the terms of a
11 .\" permission notice identical to this one.
12 .\"
13 .\" Since the Linux kernel and libraries are constantly changing, this
14 .\" manual page may be incorrect or out-of-date.  The author(s) assume no
15 .\" responsibility for errors or omissions, or for damages resulting from
16 .\" the use of the information contained herein.  The author(s) may not
17 .\" have taken the same level of care in the production of this manual,
18 .\" which is licensed free of charge, as they might when working
19 .\" professionally.
20 .\"
21 .\" Formatted or processed versions of this manual, if unaccompanied by
22 .\" the source, must acknowledge the copyright and authors of this work.
23 .\" %%%LICENSE_END
24 .\"
25 .\" References consulted:
26 .\"     Linux libc source code
27 .\"     Lewine's _POSIX Programmer's Guide_ (O'Reilly & Associates, 1991)
28 .\"     386BSD man pages
29 .\" Modified 1993-07-24 by Rik Faith (faith@cs.unc.edu)
30 .\" Modified 2002-07-27 by Walter Harms
31 .\"     (walter.harms@informatik.uni-oldenburg.de)
32 .\"
33 .TH FREXP 3 2021-03-22 "" "Linux Programmer's Manual"
34 .SH NAME
35 frexp, frexpf, frexpl \- convert floating-point number to fractional
36 and integral components
37 .SH SYNOPSIS
38 .nf
39 .B #include <math.h>
40 .PP
41 .BI "double frexp(double " x ", int *" exp );
42 .BI "float frexpf(float " x ", int *" exp );
43 .BI "long double frexpl(long double " x ", int *" exp );
44 .fi
45 .PP
46 Link with \fI\-lm\fP.
47 .PP
48 .RS -4
49 Feature Test Macro Requirements for glibc (see
50 .BR feature_test_macros (7)):
51 .RE
52 .PP
53 .BR frexpf (),
54 .BR frexpl ():
55 .nf
56     _ISOC99_SOURCE || _POSIX_C_SOURCE >= 200112L
57         || /* Since glibc 2.19: */ _DEFAULT_SOURCE
58         || /* Glibc <= 2.19: */ _BSD_SOURCE || _SVID_SOURCE
59 .fi
60 .SH DESCRIPTION
61 These functions are used to split the number
62 .I x
63 into a
64 normalized fraction and an exponent which is stored in
65 .IR exp .
66 .SH RETURN VALUE
67 These functions return the normalized fraction.
68 If the argument
69 .I x
70 is not zero,
71 the normalized fraction is
72 .I x
73 times a power of two,
74 and its absolute value is always in the range 1/2 (inclusive) to
75 1 (exclusive), that is, [0.5,1).
76 .PP
78 .I x
79 is zero, then the normalized fraction is
80 zero and zero is stored in
81 .IR exp .
82 .PP
84 .I x
85 is a NaN,
86 a NaN is returned, and the value of
87 .I *exp
88 is unspecified.
89 .PP
91 .I x
92 is positive infinity (negative infinity),
93 positive infinity (negative infinity) is returned, and the value of
94 .I *exp
95 is unspecified.
96 .SH ERRORS
97 No errors occur.
98 .SH ATTRIBUTES
99 For an explanation of the terms used in this section, see
100 .BR attributes (7).
101 .ad l
104 allbox;
105 lbx lb lb
106 l l l.
107 Interface       Attribute       Value
109 .BR frexp (),
110 .BR frexpf (),
111 .BR frexpl ()
112 T}      Thread safety   MT-Safe
116 .sp 1
117 .SH CONFORMING TO
118 C99, POSIX.1-2001, POSIX.1-2008.
120 The variant returning
121 .I double
122 also conforms to
123 SVr4, 4.3BSD, C89.
124 .SH EXAMPLES
125 The program below produces results such as the following:
127 .in +4n
129 .RB "$" " ./a.out 2560"
130 frexp(2560, &e) = 0.625: 0.625 * 2\(ha12 = 2560
131 .RB "$" " ./a.out \-4"
132 frexp(\-4, &e) = \-0.5: \-0.5 * 2\(ha3 = \-4
135 .SS Program source
138 #include <math.h>
139 #include <float.h>
140 #include <stdio.h>
141 #include <stdlib.h>
144 main(int argc, char *argv[])
146     double x, r;
147     int exp;
149     x = strtod(argv[1], NULL);
150     r = frexp(x, &exp);
152     printf("frexp(%g, &e) = %g: %g * %d\(ha%d = %g\en",
153            x, r, r, FLT_RADIX, exp, x);
154     exit(EXIT_SUCCESS);
157 .SH SEE ALSO
158 .BR ldexp (3),
159 .BR modf (3)