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

#include <stdio.h>
#include "common.h"
#include "io.h"
#include "token.h"

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

#endif