mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-05-15 20:45:56 +03:00
890714b8ca
This reverts commit 18374ea8f1.
19 lines
328 B
C++
19 lines
328 B
C++
/*
|
|
* 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
|