stream: stream_stop -> stream_free

This commit is contained in:
2026-02-09 08:34:48 +00:00
committed by oreodave
parent f164427b47
commit 5c7fb0fabd
3 changed files with 11 additions and 11 deletions

View File

@@ -57,7 +57,7 @@ stream_err_t stream_init_pipe(stream_t *, const char *, FILE *);
// descriptor. Use with caution.
stream_err_t stream_init_file(stream_t *, const char *, FILE *);
void stream_reset(stream_t *);
void stream_stop(stream_t *);
void stream_free(stream_t *);
// End of Content (i.e. we've consumed all cached content/file)
bool stream_eoc(stream_t *);