From 9a4d5574a89c4a7842211238d8b9b30b905cc056 Mon Sep 17 00:00:00 2001 From: ame Date: Mon, 18 Dec 2023 13:55:13 -0600 Subject: config and io functions --- src/io.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/io.h') diff --git a/src/io.h b/src/io.h index 7cbca95..d32d313 100644 --- a/src/io.h +++ b/src/io.h @@ -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} }; -- cgit v1.2.3