首页 > 代码库 > Lua 与C交互 第二篇
Lua 与C交互 第二篇
使用静态链接的方式
#include <stdio.h> #include <stdlib.h> #include <string.h> #ifdef __cplusplus extern "C" { #endif #include "lua/include/lua.h" #include "lua/include/lauxlib.h" #include "lua/include/lualib.h" #pragma comment (lib, "lua/lib/lua5.2.3-static.lib") #ifdef __cplusplus } #endif int main(void) { char buffer[256]; int error; lua_State *L = luaL_newstate(); /*打开lua */ luaL_openlibs(L); /*打开标准库*/ while(fgets(buffer,sizeof(buffer),stdin)!=NULL) { error = luaL_loadbuffer(L,buffer,strlen(buffer),"line") || lua_pcall(L,0,0,0); if(error) { fprintf(stderr,"%s", lua_tostring(L,-1)); lua_pop(L,1);/*从栈中弹出错误信息*/ } } lua_close(L); return 0; }
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。