July 2018
Beginner
202 pages
5h 42m
English
The Lua C API is efficient and lightweight. There are a few important header files we need to be familiar with before writing any C code. These files are the following:
Lua does not allocate any global memory. Instead it stores all of its states in a structure called lua_State. This structure contains everything that the Lua runtime needs to operate. ...