aboutsummaryrefslogtreecommitdiff
path: root/src/parseh.hpp
blob: b035b3c7cc93afcf8d800e1019df7dcf583e1d64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
 * Copyright (c) 2015 Andrew Kelley
 *
 * This file is part of zig, which is MIT licensed.
 * See http://opensource.org/licenses/MIT
 */


#ifndef ZIG_PARSEH_HPP
#define ZIG_PARSEH_HPP

#include "buffer.hpp"

#include <stdio.h>

void parse_h_file(const char *target_path, ZigList<const char *> *clang_argv, FILE *f);

#endif