From 74a734206e04ec674b0af0179d64a2e8bcc161d9 Mon Sep 17 00:00:00 2001 From: Vito Caputo Date: Thu, 15 Jun 2023 19:08:21 -0700 Subject: til_stream: introduce til_stream_{end,active}() rkt needs a way to signal the end of a sequence, this will probably get more work in the future but something simple is fine for now --- src/til_stream.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/til_stream.h') diff --git a/src/til_stream.h b/src/til_stream.h index cb3c98e..e6346fd 100644 --- a/src/til_stream.h +++ b/src/til_stream.h @@ -45,6 +45,8 @@ typedef struct til_stream_hooks_t { til_stream_t * til_stream_new(void); til_stream_t * til_stream_free(til_stream_t *stream); +void til_stream_end(til_stream_t *stream); +int til_stream_active(til_stream_t *stream); int til_stream_set_hooks(til_stream_t *stream, const til_stream_hooks_t *hooks, void *context); int til_stream_unset_hooks(til_stream_t *stream, const til_stream_hooks_t *hooks); -- cgit v1.2.1