compress: cstream: update b_stream usage

This commit is contained in:
2025-10-24 12:42:13 +01:00
parent 9729ab4f05
commit f50b2216c0
2 changed files with 3 additions and 2 deletions

View File

@@ -3,6 +3,7 @@
#include <blue/compress/function.h>
#include <blue/core/ringbuffer.h>
#include <blue/core/stream.h>
#include <stddef.h>
struct b_stream;
@@ -14,7 +15,7 @@ enum cstream_flags {
struct b_cstream {
enum cstream_flags s_flags;
struct b_stream *s_endpoint;
b_stream *s_endpoint;
struct b_compressor *s_compressor;
/* s_in is the input buffer, and s_out is the output buffer.
*