diff options
author | Michael Lingelbach <m.j.lbach@gmail.com> | 2021-09-26 12:23:46 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-26 12:23:46 -0700 |
commit | 68c65b7732efdb637c4a0d1e2f2799932f654c59 (patch) | |
tree | b790c771d539e429a968861b672aa906f80dd483 /src/cjson/lua_cjson.h | |
parent | 3246bf5f4e24025b4a14ed99eeb4a8f954626519 (diff) | |
parent | 9c31f3b026ca2612bdda7e41fa0da3b2e29bba18 (diff) | |
download | rneovim-68c65b7732efdb637c4a0d1e2f2799932f654c59.tar.gz rneovim-68c65b7732efdb637c4a0d1e2f2799932f654c59.tar.bz2 rneovim-68c65b7732efdb637c4a0d1e2f2799932f654c59.zip |
Merge pull request #14871 from mjlbach/feature/lua-cjson-embedded
feat(lua): expose lua-cjson as vim.json
Diffstat (limited to 'src/cjson/lua_cjson.h')
-rw-r--r-- | src/cjson/lua_cjson.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/cjson/lua_cjson.h b/src/cjson/lua_cjson.h new file mode 100644 index 0000000000..3f70b679be --- /dev/null +++ b/src/cjson/lua_cjson.h @@ -0,0 +1,10 @@ +#ifndef CJSON_LUACJSON_H +#define CJSON_LUACJSON_H + +#include "lua.h" + +int lua_cjson_new(lua_State *l); +int luaopen_cjson(lua_State *l); +int luaopen_cjson_safe(lua_State *l); + +#endif // CJSON_LUACJSON_H |