diff options
author | Mike Pall <mike> | 2021-03-25 02:21:31 +0100 |
---|---|---|
committer | Mike Pall <mike> | 2021-03-25 02:21:31 +0100 |
commit | 4c6b669c419f313306b9e6ee43be4ad5f6d73ec6 (patch) | |
tree | 4547f52836e186e94b68b331ea73d6b0086cb415 /src/lualib.h | |
parent | 836fb5bbd3a0d48cf3e4de70535925a85aea835f (diff) | |
download | luajit-4c6b669c419f313306b9e6ee43be4ad5f6d73ec6.tar.gz luajit-4c6b669c419f313306b9e6ee43be4ad5f6d73ec6.tar.bz2 luajit-4c6b669c419f313306b9e6ee43be4ad5f6d73ec6.zip |
String buffers, part 1: object serialization.
Sponsored by fmad.io.
Diffstat (limited to 'src/lualib.h')
-rw-r--r-- | src/lualib.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lualib.h b/src/lualib.h index 9cd39880..5c18e9ec 100644 --- a/src/lualib.h +++ b/src/lualib.h | |||
@@ -33,6 +33,7 @@ LUALIB_API int luaopen_debug(lua_State *L); | |||
33 | LUALIB_API int luaopen_bit(lua_State *L); | 33 | LUALIB_API int luaopen_bit(lua_State *L); |
34 | LUALIB_API int luaopen_jit(lua_State *L); | 34 | LUALIB_API int luaopen_jit(lua_State *L); |
35 | LUALIB_API int luaopen_ffi(lua_State *L); | 35 | LUALIB_API int luaopen_ffi(lua_State *L); |
36 | LUALIB_API int luaopen_string_buffer(lua_State *L); | ||
36 | 37 | ||
37 | LUALIB_API void luaL_openlibs(lua_State *L); | 38 | LUALIB_API void luaL_openlibs(lua_State *L); |
38 | 39 | ||