aboutsummaryrefslogtreecommitdiff
path: root/src/inc/tokenize.h
blob: 557da9ca35cad6a26a825b0a758d16e20ac377a3 (plain) (blame)
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
#ifndef TOKENIZE_H
#define TOKENIZE_H

#include <context.h>

#define TOKENS_MAX 4096

enum token_type {
	UNKNOWN,

	TYPE,
	TYPEDELIM,
	PARAM,

	IDENT,
	OPERATOR,

	LPAREN,
	RPAREN,
	EQUAL,

	NEWLINE,
	EOL,
	END,
};

struct token {
	enum token_type type;
	size_t start, end;
};

void tokens_print(struct ctx *ctx);
void tokenize(struct ctx *ctx);

#endif