mirror of
https://github.com/ziglang/zig.git
synced 2025-12-06 06:13:07 +00:00
17 lines
300 B
C++
17 lines
300 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_ANALYZE_HPP
|
|
#define ZIG_ANALYZE_HPP
|
|
|
|
struct CodeGen;
|
|
struct ImportTableEntry;
|
|
|
|
void semantic_analyze(CodeGen *g, ImportTableEntry *entry);
|
|
|
|
#endif
|