ljx

FORK: LuaJIT with native 5.2 and 5.3 support
git clone https://git.neptards.moe/neptards/ljx.git
Log | Files | Refs | README

lua.hpp (135B)


      1 // C++ wrapper for LuaJIT header files.
      2 
      3 extern "C" {
      4 #include "lua.h"
      5 #include "lauxlib.h"
      6 #include "lualib.h"
      7 #include "luajit.h"
      8 }
      9