summaryrefslogtreecommitdiff
path: root/src/complex/cacosh.c
blob: 9f7d6aea8bcbc45ac19fb807db0a4dd72ab83d19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# define TGSOURCE "../complex/cacosh.c"
#include "_tgmath.h"

#include <complex.h>

TYPE complex TGFN(cacosh)(TYPE complex z)
{
	return z;
}


/*d
The cacosh functions compute the complex arc hyperbolic cosine of z, with a branch
cut at values less than 1 along the real axis.
d*/

/*r
The cacosh functions return the complex arc hyperbolic cosine value, in the range of a
half-strip of non-negative values along the real axis and in the interval [−i π , +i π ] along
the imaginary axis.
r*/

/*
STDC(199901)
LINK(m)
*/