qipp
2025-11-07 744722688187eb4991c72464e2bb5e06b244fee7
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
 
 
#ifndef _ALGLIB_TYPEDEFS_H__
#define _ALGLIB_TYPEDEFS_H__
 
typedef signed char         int8_t;
typedef signed short        int16_t;
typedef signed int          int32_t;
 
typedef unsigned char       uint8_t;
typedef unsigned short      uint16_t;
typedef unsigned int        uint32_t;
 
#ifndef __ADSP_21489
typedef unsigned int      size_t;
typedef signed int            ptrdiff_t;
#endif // !__ADSP_21489
 
typedef void                uvoid;
typedef void*                uvoidptr;
typedef float                ufloat;
#define unull                ((uvoidptr)0)
 
typedef uint8_t     ubool;
#define true 1
#define false 0
 
#define INLINE                inline
#define EXTERN                extern
#define STATIC                static
 
#endif  // _ALGLIB_TYPEDEFS_H__