aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/highlevel.h2
-rw-r--r--include/sqfs/io.h14
2 files changed, 2 insertions, 14 deletions
diff --git a/include/highlevel.h b/include/highlevel.h
index b2bbd82..ed0f4bf 100644
--- a/include/highlevel.h
+++ b/include/highlevel.h
@@ -83,4 +83,6 @@ int sqfs_data_reader_dump(sqfs_data_reader_t *data,
const sqfs_inode_generic_t *inode,
int outfd, size_t block_size, bool allow_sparse);
+sqfs_file_t *sqfs_get_stdin_file(uint64_t size);
+
#endif /* HIGHLEVEL_H */
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.
*