blob: e2d8053ad0a40c7523fb2f5df3f230a93d261171 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#pragma once
#include <stdint.h>
#include <stdio.h>
#ifndef __cplusplus
#if (__STDC_VERSION__ < 202000L)
#include <stdint.h>
typedef enum bool : uint8_t { false = 0, true = 1 } bool;
#endif
#endif
typedef const char *const SourceCode;
typedef struct SizedString {
char *str;
size_t size;
} SizedString;
#define ERROR_SIZE INT64_MAX
|