aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/preprocess.h
blob: 4bf983421ff2a6c18866bda95fe542f622833d2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#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 concat_adjacent_string_literals(TokenArray* pp_tokens);
void print_token_to_file(FILE* output_file, TokenArray* pp_tokens);

#endif