diff options
Diffstat (limited to 'include/sqfs/io.h')
-rw-r--r-- | include/sqfs/io.h | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/include/sqfs/io.h b/include/sqfs/io.h index f1a5ef0..d7a923c 100644 --- a/include/sqfs/io.h +++ b/include/sqfs/io.h @@ -157,20 +157,6 @@ extern "C" { SQFS_API sqfs_file_t *sqfs_open_file(const char *filename, int flags); /** - * @brief Get a read-only file implementation that represents standard input - * - * This function creates a read-only file that represents STDIN. The file - * supports reading up to a specified number of bytes and only allows - * reading sequentially. - * - * @param size The alleged "size" of the file. - * - * @return A pointer to a file object on success, NULL on allocation failure. - */ -SQFS_API sqfs_file_t *sqfs_get_stdin_file(uint64_t size); - - -/** * @brief Read a chunk from a file and turn it into a block that can be * fed to a block processor. * |