Update.
[glibc.git] / math / cmathcalls.h
blobb2a838272128cc21c08c467683567672e824b8e8
1 /* Prototype declarations for complex math functions;
2 helper file for <complex.h>.
3 Copyright (C) 1997 Free Software Foundation, Inc.
4 This file is part of the GNU C Library.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Library General Public License as
8 published by the Free Software Foundation; either version 2 of the
9 License, or (at your option) any later version.
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Library General Public License for more details.
16 You should have received a copy of the GNU Library General Public
17 License along with the GNU C Library; see the file COPYING.LIB. If not,
18 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
21 /* NOTE: Because of the special way this file is used by <math.h>, this
22 file must NOT be protected from multiple inclusion as header files
23 usually are.
25 This file provides prototype declarations for the math functions.
26 Most functions are declared using the macro:
28 __MATHCALL (NAME, (ARGS...));
30 This means there is a function `NAME' returning `double' and a function
31 `NAMEf' returning `float'. Each place `_Mdouble_' appears in the
32 prototype, that is actually `double' in the prototype for `NAME' and
33 `float' in the prototype for `NAMEf'. Reentrant variant functions are
34 called `NAME_r' and `NAMEf_r'.
36 Functions returning other types like `int' are declared using the macro:
38 __MATHDECL (TYPE, NAME, (ARGS...));
40 This is just like __MATHCALL but for a function returning `TYPE'
41 instead of `_Mdouble_'. In all of these cases, there is still
42 both a `NAME' and a `NAMEf' that takes `float' arguments. */
44 #ifndef _COMPLEX_H
45 #error "Never include cmathcalls.h directly; include <complex.h> instead."
46 #endif
48 #define _Mdouble_complex_ _Mdouble_ complex
51 /* Trigonometric functions. */
53 /* Arc cosine of Z. */
54 __MATHCALL (cacos, (_Mdouble_complex_ __z));
55 /* Arc sine of Z. */
56 __MATHCALL (casin, (_Mdouble_complex_ __z));
57 /* Arc tangent of Z. */
58 __MATHCALL (catan, (_Mdouble_complex_ __z));
60 /* Cosine of Z. */
61 __MATHCALL (ccos, (_Mdouble_complex_ __z));
62 /* Sine of Z. */
63 __MATHCALL (csin, (_Mdouble_complex_ __z));
64 /* Tangent of Z. */
65 __MATHCALL (ctan, (_Mdouble_complex_ __z));
68 /* Hyperbolic functions. */
70 /* Hyperbolic arc cosine of Z. */
71 __MATHCALL (cacosh, (_Mdouble_complex_ __z));
72 /* Hyperbolic arc sine of Z. */
73 __MATHCALL (casinh, (_Mdouble_complex_ __z));
74 /* Hyperbolic arc tangent of Z. */
75 __MATHCALL (catanh, (_Mdouble_complex_ __z));
77 /* Hyperbolic cosine of Z. */
78 __MATHCALL (ccosh, (_Mdouble_complex_ __z));
79 /* Hyperbolic sine of Z. */
80 __MATHCALL (csinh, (_Mdouble_complex_ __z));
81 /* Hyperbolic tangent of Z. */
82 __MATHCALL (ctanh, (_Mdouble_complex_ __z));
85 /* Exponential and logarithmic functions. */
87 /* Exponential function of Z. */
88 __MATHCALL (cexp, (_Mdouble_complex_ __z));
90 /* Natural logarithm of Z. */
91 __MATHCALL (clog, (_Mdouble_complex_ __z));
94 /* Power functions. */
96 /* Return X to the Y power. */
97 __MATHCALL (cpow, (_Mdouble_complex_ __x, _Mdouble_complex_ __y));
99 /* Return the square root of Z. */
100 __MATHCALL (csqrt, (_Mdouble_complex_ __z));
103 /* Absolute value, projections, conjugates, and projection. */
105 /* Absolute value of Z. */
106 __MATHDECL (_Mdouble_,cabs, (_Mdouble_complex_ __z));
108 /* Argument value of Z. */
109 __MATHDECL (_Mdouble_,carg, (_Mdouble_complex_ __z));
111 /* Complex conjugate of Z. */
112 __MATHCALL (conj, (_Mdouble_complex_ __z));
114 /* Projection of Z onto the Riemann sphere. */
115 __MATHCALL (cproj, (_Mdouble_complex_ __z));
118 /* Decomposing complex values. */
120 /* Imaginary part of Z. */
121 __MATHDECL (_Mdouble_,cimag, (_Mdouble_complex_ __z));
123 /* Real part of Z. */
124 __MATHDECL (_Mdouble_,creal, (_Mdouble_complex_ __z));
127 /* Now some optimized versions. GCC has handy notations for these
128 functions. */
129 #if defined __GNUC__ && defined __OPTIMIZE__
131 /* Imaginary part of Z. */
132 extern __inline _Mdouble_
133 __MATH_PRECNAME(cimag) (_Mdouble_complex_ __z)
135 return __imag__ __z;
138 /* Real part of Z. */
139 extern __inline _Mdouble_
140 __MATH_PRECNAME(creal) (_Mdouble_complex_ __z)
142 return __real__ __z;
145 /* Complex conjugate of Z. */
146 extern __inline _Mdouble_complex_
147 __MATH_PRECNAME(conj) (_Mdouble_complex_ __z)
149 return ~__z;
152 #endif