aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
blob: 0e6807df964d0c479c6b948e0fc79e5808536f0b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include <context.h>
#include <lint.h>
#include <log.h>
#include <preprocess.h>
#include <tokenize.h>
#include <treeify.h>

int main(int argc, char *argv[])
{
	if (argc < 2)
		err("Not enough arguments!");

	struct ctx *ctx = context_create(argv[1]);
	preprocess(ctx);
	tokenize(ctx);
	lint(ctx);
	treeify(ctx);

	context_destroy(ctx);

	return 0;
}