blob: df6e84113cab21ab6e12eddbc2ecebef3827c059 (
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
35
36
37
38
39
|
// Common header for tinyff library
// Not recommended to be included directly
#ifndef TINYFF_COMMON_H
#define TINYFF_COMMON_H
#include <stdint.h>
#include <stdbool.h>
// Context bases
// Default
#define FF_BASE \
bool valid; \
ff_result last_error;
// Flags
typedef bool ff_flag;
#define FF_ENABLE true
#define FF_DISABLE false
// Functions
static inline uint32_t get_big_endian(const uint8_t *buffer) {
return (uint32_t)(buffer[0] << 24) |
(uint32_t)(buffer[1] << 16) |
(uint32_t)(buffer[2] << 8) |
(uint32_t)(buffer[3]);
}
static inline uint32_t get_little_endian(const uint8_t *buffer)
{
return (uint32_t)(buffer[0]) |
(uint32_t)(buffer[1] << 8) |
(uint32_t)(buffer[2] << 16) |
(uint32_t)(buffer[3] << 24);
}
#endif
|