mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 03:27:39 +00:00
16 lines
424 B
C
16 lines
424 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 i, n;
|
|
const void **p;
|
|
};
|
|
|
|
int LuaPushVisit(struct LuaVisited *, const void *);
|
|
void LuaPopVisit(struct LuaVisited *);
|
|
|
|
COSMOPOLITAN_C_END_
|
|
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
|
|
#endif /* COSMOPOLITAN_THIRD_PARTY_LUA_VISITOR_H_ */
|