summaryrefslogtreecommitdiffstats
path: root/buf.h
diff options
context:
space:
mode:
Diffstat (limited to 'buf.h')
-rw-r--r--buf.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/buf.h b/buf.h
index 578bc5aa..bafd1bd4 100644
--- a/buf.h
+++ b/buf.h
@@ -41,6 +41,8 @@ val replace_buf(val buf, val items, val from, val to);
val buf_list(val list);
val buf_put_buf(val dbuf, val sbuf, val pos);
+void buf_put_bytes(val buf, val pos, mem_t *ptr, cnum size, val self);
+
#if HAVE_I8
val buf_put_i8(val buf, val pos, val num);
val buf_put_u8(val buf, val pos, val num);
@@ -73,6 +75,8 @@ val buf_put_float(val buf, val pos, val num);
val buf_put_double(val buf, val pos, val num);
val buf_put_cptr(val buf, val pos, val cptr);
+void buf_get_bytes(val buf, val pos, mem_t *ptr, cnum size, val self);
+
#if HAVE_I8
val buf_get_i8(val buf, val pos);
val buf_get_u8(val buf, val pos);