Next: 5.1 Executing Lua Code
Up: Reference Manual of the
Previous: 4.8 Error Handling
This section describes the API for Lua, that is,
the set of C functions available to the host program to communicate
with the library.
The API functions can be classified in the following categories:
- executing Lua code;
- converting values between C and Lua;
- manipulating (reading and writing) Lua objects;
- calling Lua functions;
- C functions to be called by Lua;
- references to Lua Objects.
All API functions are declared in the file lua.h
.
Next: 5.1 Executing Lua Code
Up: Reference Manual of the
Previous: 4.8 Error Handling