mirror of
https://github.com/fluencelabs/redis
synced 2025-06-22 05:21:33 +00:00
deps
hiredis
jemalloc
linenoise
lua
doc
etc
Makefile
README
all.c
lua.hpp
lua.ico
lua.pc
luavs.bat
min.c
noparser.c
strict.lua
src
test
COPYRIGHT
HISTORY
INSTALL
Makefile
README
Makefile
README.md
update-jemalloc.sh
src
tests
utils
.gitignore
00-RELEASENOTES
BUGS
CONTRIBUTING
COPYING
INSTALL
MANIFESTO
Makefile
README.md
redis.conf
runtest
runtest-cluster
runtest-sentinel
sentinel.conf
10 lines
191 B
C++
10 lines
191 B
C++
// lua.hpp
|
|
// Lua header files for C++
|
|
// <<extern "C">> not supplied automatically because Lua also compiles as C++
|
|
|
|
extern "C" {
|
|
#include "lua.h"
|
|
#include "lualib.h"
|
|
#include "lauxlib.h"
|
|
}
|