Introduce some nice typedefs in lib.h
This commit is contained in:
15
lib.h
15
lib.h
@@ -5,7 +5,20 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#define MAX(a, b) (a > b ? a : b)
|
||||
#include <stdint.h>
|
||||
|
||||
typedef uint8_t u8;
|
||||
typedef uint16_t u16;
|
||||
typedef uint32_t u32;
|
||||
typedef uint64_t u64;
|
||||
|
||||
typedef int8_t i8;
|
||||
typedef int16_t i16;
|
||||
typedef int32_t i32;
|
||||
typedef int64_t i64;
|
||||
|
||||
#define MAX(A, B) ((A) < (B) ? (A) : (B))
|
||||
#define MIN(A, B) ((A) > (B) ? (A) : (B))
|
||||
|
||||
bool usable_character(char c);
|
||||
char *fread_all(FILE *fp);
|
||||
|
||||
Reference in New Issue
Block a user