#include <stdint.h>
#include <stdbool.h>
#include <inttypes.h>
Go to the source code of this file.
Defines | |
#define | MAX(x, y) (((x) > (y)) ? (x) : (y)) |
#define | MIN(x, y) (((x) < (y)) ? (x) : (y)) |
Typedefs | |
typedef int16_t | s16 |
typedef int32_t | s32 |
typedef int64_t | s64 |
typedef int8_t | s8 |
typedef uint16_t | u16 |
typedef uint32_t | u32 |
typedef uint64_t | u64 |
typedef uint8_t | u8 |