diff options
Diffstat (limited to 'include/io')
-rw-r--r-- | include/io/ostream.h | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/include/io/ostream.h b/include/io/ostream.h index 21850d4..c1602ab 100644 --- a/include/io/ostream.h +++ b/include/io/ostream.h @@ -10,13 +10,6 @@ #include "sqfs/predef.h" #include "io/istream.h" -#if defined(__GNUC__) || defined(__clang__) -# define PRINTF_ATTRIB(fmt, elipsis) \ - __attribute__ ((format (printf, fmt, elipsis))) -#else -# define PRINTF_ATTRIB(fmt, elipsis) -#endif - /** * @struct ostream_t * @@ -112,19 +105,6 @@ SQFS_INLINE const char *ostream_get_filename(ostream_t *strm) } /** - * @brief Printf like function that appends to an output stream - * - * @memberof ostream_t - * - * @param strm The output stream to append to. - * @param fmt A printf style format string. - * - * @return The number of characters written on success, -1 on failure. - */ -SQFS_INTERNAL int ostream_printf(ostream_t *strm, const char *fmt, ...) - PRINTF_ATTRIB(2, 3); - -/** * @brief Read data from an input stream and append it to an output stream * * @memberof ostream_t |