core: stream: add a second generic pointer to b_stream

This commit is contained in:
2025-10-19 10:22:35 +01:00
parent c389e32dc6
commit d5bd8fa32a

View File

@@ -41,7 +41,7 @@ typedef struct b_stream {
int *s_istack; int *s_istack;
int s_add_indent; int s_add_indent;
size_t s_istack_ptr, s_istack_size; size_t s_istack_ptr, s_istack_size;
void *s_ptr; void *s_ptr0, *s_ptr1;
b_status (*s_close)(struct b_stream *); b_status (*s_close)(struct b_stream *);
b_status (*s_seek)(struct b_stream *, long long, b_stream_seek_origin); b_status (*s_seek)(struct b_stream *, long long, b_stream_seek_origin);