summaryrefslogtreecommitdiffhomepage
path: root/buffer.h
diff options
context:
space:
mode:
authorAki <please@ignore.pl>2021-08-21 16:17:05 +0200
committerAki <please@ignore.pl>2021-08-21 16:17:05 +0200
commit4c76943de7912996cc6e380a44da9e8f3ea32503 (patch)
tree9a6da26832fa6ad3dce36e8ea139e6d6b6f0bece /buffer.h
parent6cefc948d37cd856d23caf00970ad3565672b016 (diff)
downloadplop-4c76943de7912996cc6e380a44da9e8f3ea32503.zip
plop-4c76943de7912996cc6e380a44da9e8f3ea32503.tar.gz
plop-4c76943de7912996cc6e380a44da9e8f3ea32503.tar.bz2
Added prefix to buffer related functions
Diffstat (limited to 'buffer.h')
-rw-r--r--buffer.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/buffer.h b/buffer.h
index 66f8f02..d3153c7 100644
--- a/buffer.h
+++ b/buffer.h
@@ -11,7 +11,7 @@ struct buffer
int allocated;
};
-void grow(lua_State *, struct buffer *);
-int read_more(lua_State *, const int, struct buffer *, const int, lua_KContext);
-int prepare_at_least(lua_State *, const int, struct buffer *, const int, lua_KContext);
-int until(struct buffer *, const char *, const int);
+void buffer_grow(lua_State *, struct buffer *);
+int buffer_read_more(lua_State *, const int, struct buffer *, const int, lua_KContext);
+int buffer_prepare_at_least(lua_State *, const int, struct buffer *, const int, lua_KContext);
+int buffer_until(struct buffer *, const char *, const int);