18 lines
236 B
C
18 lines
236 B
C
#ifndef LIB_HEADER
|
|
#define LIB_HEADER
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <lauxlib.h>
|
|
#include <lua.h>
|
|
#include <lualib.h>
|
|
|
|
int luaopen_mylib(lua_State* L);
|
|
int c_multiply(lua_State* L);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif |