aboutsummaryrefslogtreecommitdiff
path: root/include/std/buffer.h
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2020-01-23 03:09:54 +0100
committerdec05eba <dec05eba@protonmail.com>2020-01-23 03:09:54 +0100
commitcc30a97ab90a8fa40707936d3d089d81c49559b6 (patch)
treec6544b785395cf12b8c9f4c65c3f8ebb9699232d /include/std/buffer.h
parentb7f056a73ad4053eb2284c54873dfb3888dcb430 (diff)
Add bytecode decoding.. starting on program execution now
Diffstat (limited to 'include/std/buffer.h')
-rw-r--r--include/std/buffer.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/std/buffer.h b/include/std/buffer.h
index b7224e9..3aad48b 100644
--- a/include/std/buffer.h
+++ b/include/std/buffer.h
@@ -21,5 +21,6 @@ int tsl_buffer_append(TslBuffer *self, const void *data, size_t size);
void tsl_buffer_pop(TslBuffer *self, size_t size);
void* tsl_buffer_begin(TslBuffer *self);
void* tsl_buffer_end(TslBuffer *self);
+void tsl_buffer_move(TslBuffer *dst, TslBuffer *src);
#endif /* TSL_BUFFER_H */