-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathacos.c
50 lines (34 loc) · 1.01 KB
/
acos.c
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/*++
toro C Library
https://github.com/KilianKegel/toro-C-Library#toro-c-library-formerly-known-as-torito-c-library
Copyright (c) 2017-2025, Kilian Kegel. All rights reserved.
SPDX-License-Identifier: GNU General Public License v3.0
Module Name:
acos.c
Abstract:
Implementation of the Standard C function.
Calculates the arccosine of a floating-point value.
Author:
Kilian Kegel
--*/
#include <stdint.h>
extern const double __cdePI_2;
extern double __cdecl asin(double d);
/**
Synopsis
#include <math.h>
double acos(double x);
Description
https://learn.microsoft.com/en-us/cpp/c-runtime-library/reference/acos-acosf-acosl
Parameters
https://learn.microsoft.com/en-us/cpp/c-runtime-library/reference/acos-acosf-acosl#parameters
Returns
https://learn.microsoft.com/en-us/cpp/c-runtime-library/reference/acos-acosf-acosl#return-value
arccos(x) = pi/2 - arcsin(x)
**/
double __cdecl acos(double d)
{
double dRet;
dRet = __cdePI_2 - asin(d);
return dRet;
}