mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-07 06:53:33 +00:00
17 lines
422 B
C
17 lines
422 B
C
|
#ifndef COSMOPOLITAN_THIRD_PARTY_LUA_VISITOR_H_
|
||
|
#define COSMOPOLITAN_THIRD_PARTY_LUA_VISITOR_H_
|
||
|
#if !(__ASSEMBLER__ + __LINKER__ + 0)
|
||
|
COSMOPOLITAN_C_START_
|
||
|
|
||
|
struct LuaVisited {
|
||
|
int n;
|
||
|
const void **p;
|
||
|
};
|
||
|
|
||
|
bool LuaPushVisit(struct LuaVisited *, const void *);
|
||
|
void LuaPopVisit(struct LuaVisited *);
|
||
|
|
||
|
COSMOPOLITAN_C_END_
|
||
|
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
|
||
|
#endif /* COSMOPOLITAN_THIRD_PARTY_LUA_VISITOR_H_ */
|