cosmopolitan/third_party/lua/visitor.h

17 lines
424 B
C
Raw Normal View History

2022-04-29 13:06:23 +00:00
#ifndef COSMOPOLITAN_THIRD_PARTY_LUA_VISITOR_H_
#define COSMOPOLITAN_THIRD_PARTY_LUA_VISITOR_H_
#if !(__ASSEMBLER__ + __LINKER__ + 0)
COSMOPOLITAN_C_START_
struct LuaVisited {
2022-07-12 06:06:49 +00:00
int i, n;
2022-04-29 13:06:23 +00:00
const void **p;
};
int LuaPushVisit(struct LuaVisited *, const void *);
2022-04-29 13:06:23 +00:00
void LuaPopVisit(struct LuaVisited *);
COSMOPOLITAN_C_END_
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
#endif /* COSMOPOLITAN_THIRD_PARTY_LUA_VISITOR_H_ */