aboutsummaryrefslogtreecommitdiff
path: root/include/io/std.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/io/std.h')
-rw-r--r--include/io/std.h8
1 files changed, 4 insertions, 4 deletions
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
}