summaryrefslogtreecommitdiffhomepage
path: root/plop.h
diff options
context:
space:
mode:
authorAki <please@ignore.pl>2020-08-24 18:57:02 +0200
committerAki <please@ignore.pl>2020-08-24 18:57:02 +0200
commitbeab4f743429525add08cd22341470c972cb01be (patch)
tree19c9a8f34c0953d880c3e34f9818314e6169d89f /plop.h
parent96b6d2a1cfccb060fadce11c50737000c7bf036c (diff)
downloadplop-beab4f743429525add08cd22341470c972cb01be.zip
plop-beab4f743429525add08cd22341470c972cb01be.tar.gz
plop-beab4f743429525add08cd22341470c972cb01be.tar.bz2
Added prefix to plop functions
Diffstat (limited to 'plop.h')
-rw-r--r--plop.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/plop.h b/plop.h
index 78c307c..5b8e387 100644
--- a/plop.h
+++ b/plop.h
@@ -6,7 +6,7 @@
#include "request.h"
-int make_server(const char *, const char *);
-int load_handler(lua_State *, const char *);
-int handle_client(lua_State *, struct epoll_event *);
-int handle_server(lua_State *, const int, const int);
+int plop_make_server(const char *, const char *);
+int plop_load_handler(lua_State *, const char *);
+int plop_handle_client(lua_State *, struct epoll_event *);
+int plop_handle_server(lua_State *, const int, const int);