aboutsummaryrefslogtreecommitdiff
path: root/src/io.h
diff options
context:
space:
mode:
authorame <[email protected]>2024-01-11 08:54:58 -0600
committerame <[email protected]>2024-01-11 08:54:58 -0600
commit78d83c1c4ae765636584616b99ccf146636669cf (patch)
tree79aa2321fde6944646df783d3fefe5a91094f826 /src/io.h
parent123d5ad36e406e3c4ac75d5f040e02891d13ba24 (diff)
arg_handle
Diffstat (limited to 'src/io.h')
-rw-r--r--src/io.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/io.h b/src/io.h
index 570e4b4..21e14d0 100644
--- a/src/io.h
+++ b/src/io.h
@@ -24,6 +24,7 @@ int l_log(lua_State*);
int l_warn(lua_State*);
int l_error(lua_State*);
int l_pprint(lua_State*);
+int l_arg_handle(lua_State*);
int l_json_parse(lua_State*);
@@ -35,5 +36,6 @@ static const luaL_Reg io_function_list [] = {
{"error",l_error},
{"pprint",l_pprint},
{"json_parse",l_json_parse},
+ {"arg_handle",l_arg_handle},
{NULL,NULL}
};