diff options
author | Aki <please@ignore.pl> | 2020-05-02 23:35:40 +0200 |
---|---|---|
committer | Aki <please@ignore.pl> | 2020-05-02 23:35:40 +0200 |
commit | 901c9ba27afd50d709a084f8c35cc208ac5b85be (patch) | |
tree | a109a008b3757a9df9849e9262f0ba5fdc56dc98 | |
parent | 3a31c46c969067a1684de7f4a6611961f1fd69dd (diff) | |
download | plop-901c9ba27afd50d709a084f8c35cc208ac5b85be.zip plop-901c9ba27afd50d709a084f8c35cc208ac5b85be.tar.gz plop-901c9ba27afd50d709a084f8c35cc208ac5b85be.tar.bz2 |
Added Lua with libraries and nothing else
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | plop.c | 6 |
2 files changed, 8 insertions, 0 deletions
@@ -1,4 +1,6 @@ CFLAGS+=-Wall -Wextra -Wpedantic +CFLAGS+=-I/usr/include/lua5.3 +LDLIBS+=-llua5.3 plop: plop.o http.o http.h http.o: http.h @@ -1,5 +1,8 @@ #include <errno.h> #include <fcntl.h> +#include <lauxlib.h> +#include <lua.h> +#include <lualib.h> #include <netdb.h> #include <poll.h> #include <stdlib.h> @@ -134,6 +137,9 @@ int handle_server(struct pollfd * fdv, int fdc, const int size) /// \return Error code int main(int argc, char ** argv) { + lua_State * L = luaL_newstate(); + luaL_openlibs(L); + if (2 != argc) { return 4; |