aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/preprocess.h
blob: a39f01c3f2dc31d40cf2b2c2756d6b0c02ef480c (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef DUCC_PREPROCESS_H
#define DUCC_PREPROCESS_H

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

TokenArray* preprocess(InFile* src, StrArray* included_files, StrArray* user_include_dirs);
void print_token_to_file(FILE* output_file, TokenArray* pp_tokens);

#endif