diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/salticidae/stream.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/salticidae/stream.h b/include/salticidae/stream.h index 37786b2..50a67dd 100644 --- a/include/salticidae/stream.h +++ b/include/salticidae/stream.h @@ -505,8 +505,7 @@ datastream_t *datastream_new(); datastream_t *datastream_new_from_bytes(const uint8_t *base, size_t size); void datastream_free(const datastream_t *self); -bool datastream_assign_by_copy(datastream_t *dst, const datastream_t *src); -bool datastream_assign_by_move(datastream_t *dst, datastream_t *_moved_src); +datastream_t *datastream_copy(const datastream_t *self); uint8_t *datastream_data(datastream_t *self); void datastream_clear(datastream_t *self); size_t datastream_size(const datastream_t *self); |