blob: 5e5ab4151a9de4e9f78ae31d0123baa35d37869c (
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
27
28
29
30
31
32
33
34
|
/***************************************************************
__ST_ATAN2.H
This file contains declarations for
ATAN2 constants operations.
PART OF : MPU - library .
USAGE : Internal only .
NOTE : Include "libmpu.h" before this FILE .
Copyright (C) 2000 - 2024 by Andrew V.Kosteltsev.
All Rights Reserved.
***************************************************************/
#ifndef __ST_ATAN2_H
#define __ST_ATAN2_H
#ifdef __cplusplus
extern "C" {
#endif
extern void ei_atan2__A ( EMUSHORT *eiy, EMUSHORT *eix, int nb );
#ifdef __cplusplus
} /* ... extern "C" */
#endif
#endif /* __ST_ATAN2_H */
|