summaryrefslogtreecommitdiff
path: root/toc.c
blob: 3965e1882397d3a06d6158f84ad28a17d64a498e (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
/* Includes all of toc's files */
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#include <string.h>
#include <ctype.h>
#include <limits.h>
#include <stdint.h>
#include <stdbool.h>

typedef unsigned long long UInteger;
typedef long long Integer;
typedef long double Floating; /* OPTIM: Switch to double */
#define INTEGER_MAX INT64_MAX
#define UINTEGER_FMT "%llu"
#define INTEGER_FMT "%lld"

#include "util/err.c"
#include "util/arr.c"
#include "util/blockarr.c"
#include "util/str.c"
#include "identifiers.c"
#include "tokenizer.c"
#include "util/location.c"
#include "parse.c"
#include "eval.c"
#include "types.c"