From e811851deba9c45f3d9b3c5b4ad5eaa7945382d5 Mon Sep 17 00:00:00 2001 From: David Oberhollenzer Date: Mon, 12 Jun 2023 20:14:44 +0200 Subject: Mass rename istream_t/ostream_t with sqfs_ prefix istream_t becomes sqfs_istream_t and ostream_t becomes sqfs_ostream_t Signed-off-by: David Oberhollenzer --- include/io/std.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'include/io/std.h') diff --git a/include/io/std.h b/include/io/std.h index 805bebd..3a8bbf8 100644 --- a/include/io/std.h +++ b/include/io/std.h @@ -17,20 +17,20 @@ extern "C" { /** * @brief Create an input stream that reads from standard input. * - * @memberof istream_t + * @memberof sqfs_istream_t * * @return A pointer to an input stream on success, NULL on failure. */ -SQFS_INTERNAL istream_t *istream_open_stdin(void); +SQFS_INTERNAL sqfs_istream_t *istream_open_stdin(void); /** * @brief Create an output stream that writes to standard output. * - * @memberof ostream_t + * @memberof sqfs_ostream_t * * @return A pointer to an output stream on success, NULL on failure. */ -SQFS_INTERNAL ostream_t *ostream_open_stdout(void); +SQFS_INTERNAL sqfs_ostream_t *ostream_open_stdout(void); #ifdef __cplusplus } -- cgit v1.2.3