blob: 5801d933fbffa2f1147546894b28315b4bdd3725 (
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
24
25
26
27
28
29
30
31
32
33
|
#ifndef _TYPES
#define _TYPES
#include "stdint.h"
#include "stddef.h"
typedef int_fast8_t i8;
typedef int_fast16_t i16;
typedef int_fast32_t i32;
typedef int_fast64_t i64;
typedef uint_fast8_t u8;
typedef uint_fast16_t u16;
typedef uint_fast32_t u32;
typedef uint_fast64_t u64;
typedef size_t usize;
typedef enum Result {
R_Ok = 0,
R_Err,
R_Invalid,
R_Uninitialized,
R_OutOfBounds,
R_PRIVATE
} Result;
#define RETURN_NOTOK(x) { Result r = x; if (R_Ok != r) return r; }
#define B(x) ((x) * 8)
#define KiB(x) ((x) * 1024)
#define MiB(x) ((x) * 1048576)
#define GiB(x) ((x) * 1073741824)
#endif /* _TYPES */
|