lua/demo/lib.h

18 lines
236 B
C
Raw Normal View History

2025-02-12 16:34:23 +08:00
#ifndef LIB_HEADER
#define LIB_HEADER
#ifdef __cplusplus
extern "C" {
#endif
2025-02-12 17:00:05 +08:00
#include <lauxlib.h>
#include <lua.h>
#include <lualib.h>
2025-02-12 16:34:23 +08:00
int luaopen_mylib(lua_State* L);
int c_multiply(lua_State* L);
#ifdef __cplusplus
}
#endif
#endif