blob: 736e32cdcd03f996da324fce4e3235076ca61738 (
plain)
1
2
3
4
5
6
7
8
9
|
-- def.lua
-- make .DEF file from lua.h
-- usage: lua def.lua <lua.h >lua.def
T=read"*a"
write("LIBRARY LUA\nVERSION ")
gsub(T,"LUA_VERSION.-(%d+%.%d+)",write)
write("\nEXPORTS\n")
gsub(T,"(lua_%w+)%s+%(",function (f) write(" ",f,"\n") end)
|