diff options
| author | ame <[email protected]> | 2023-12-18 13:55:13 -0600 |
|---|---|---|
| committer | ame <[email protected]> | 2023-12-18 13:55:13 -0600 |
| commit | 9a4d5574a89c4a7842211238d8b9b30b905cc056 (patch) | |
| tree | 17506097f415d4bddcdf3566d3ce0de08ab9a377 /src/io.h | |
| parent | 9607c2fff47e764efba9ec0e12291d9368ae9073 (diff) | |
config and io functions
Diffstat (limited to 'src/io.h')
| -rw-r--r-- | src/io.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -23,6 +23,7 @@ int l_debug(lua_State*); int l_log(lua_State*); int l_warn(lua_State*); int l_error(lua_State*); +int l_pprint(lua_State*); static const luaL_Reg io_function_list [] = { {"readfile",l_readfile}, @@ -30,6 +31,6 @@ static const luaL_Reg io_function_list [] = { {"log",l_log}, {"warn",l_warn}, {"error",l_error}, - + {"pprint",l_pprint}, {NULL,NULL} }; |
