mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-04-27 19:09:47 +03:00
20 lines
508 B
C++
20 lines
508 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 "all_types.hpp"
|
|
|
|
int parse_h_file(ImportTableEntry *out_import, ZigList<ErrorMsg *> *out_errs,
|
|
ZigList<const char *> *clang_argv);
|
|
int parse_h_buf(ImportTableEntry *out_import, ZigList<ErrorMsg *> *out_errs,
|
|
Buf *source, const char **args, int args_len, const char *libc_include_path);
|
|
|
|
#endif
|