about summary refs log tree commit diff stats
path: root/wrapperhelper/src/parse.h
blob: e80f32d260dca4024ad807a1b3ec8d7b4cc4c54e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#pragma once

#ifndef PARSE_H
#define PARSE_H

#include <stdio.h>

#include "lang.h"
#include "machine.h"

void dump_prepare(const char *filename, FILE *file);
void dump_preproc(machine_t *target, const char *filename, FILE *file);
file_t *parse_file(machine_t *target, const char *filename, FILE *file);

#endif // PARSE_H