/* ** $Id: lcmd.h $ ** Command execution for backtick syntax ** See Copyright Notice in lua.h */ #ifndef lcmd_h #define lcmd_h #include "lua.h" int luaB_command (lua_State *L); int luaB_interactive (lua_State *L); #endif