diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/io/istream.h | 5 | ||||
-rw-r--r-- | include/io/ostream.h | 17 |
2 files changed, 17 insertions, 5 deletions
diff --git a/include/io/istream.h b/include/io/istream.h index 567d7e3..3280327 100644 --- a/include/io/istream.h +++ b/include/io/istream.h @@ -107,7 +107,10 @@ SQFS_INTERNAL int istream_precache(istream_t *strm); * * @return A string holding the underlying filename. */ -SQFS_INTERNAL const char *istream_get_filename(istream_t *strm); +SQFS_INLINE const char *istream_get_filename(istream_t *strm) +{ + return strm->get_filename(strm); +} /** * @brief Skip over a number of bytes in an input stream. diff --git a/include/io/ostream.h b/include/io/ostream.h index 15585f9..21850d4 100644 --- a/include/io/ostream.h +++ b/include/io/ostream.h @@ -56,8 +56,11 @@ extern "C" { * * @return Zero on success, -1 on failure. */ -SQFS_INTERNAL int ostream_append(ostream_t *strm, const void *data, - size_t size); +SQFS_INLINE int ostream_append(ostream_t *strm, const void *data, + size_t size) +{ + return strm->append(strm, data, size); +} /** * @brief Append a number of zero bytes to an output stream. @@ -89,7 +92,10 @@ SQFS_INTERNAL int ostream_append_sparse(ostream_t *strm, size_t size); * * @return Zero on success, -1 on failure. */ -SQFS_INTERNAL int ostream_flush(ostream_t *strm); +SQFS_INLINE int ostream_flush(ostream_t *strm) +{ + return strm->flush(strm); +} /** * @brief Get the underlying filename of a output stream. @@ -100,7 +106,10 @@ SQFS_INTERNAL int ostream_flush(ostream_t *strm); * * @return A string holding the underlying filename. */ -SQFS_INTERNAL const char *ostream_get_filename(ostream_t *strm); +SQFS_INLINE const char *ostream_get_filename(ostream_t *strm) +{ + return strm->get_filename(strm); +} /** * @brief Printf like function that appends to an output stream |