aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/tokenize.h
blob: fd334a1e95bd3b58122955a8b4f17619a21ca66f (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef DUCC_TOKENIZE_H
#define DUCC_TOKENIZE_H

#include "io.h"
#include "token.h"

TokenArray* tokenize(InFile* src);
TokenArray* convert_pp_tokens_to_tokens(TokenArray* pp_tokens);

#endif