blob: 3f3cc74ebafc3e2280a13f73790aa70f28406d18 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#ifndef __libfixmath_fixmath_h__
#define __libfixmath_fixmath_h__
#ifdef __cplusplus
extern "C"
{
#endif
/*!
\file fixmath.h
\brief Functions to perform fast accurate fixed-point math operations.
*/
#include <fixmath/uint32.h>
#include <fixmath/int64.h>
#include <fixmath/fract32.h>
#include <fixmath/fix16.h>
#ifdef __cplusplus
}
#endif
#endif
|