aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2023-09-15 14:50:58 +0200
committerDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2023-09-15 21:48:47 +0200
commit2f172b69bda25d26790538cea7a15044f8207a7b (patch)
tree10977ece69d001d828ea6a857ba30af0d74ec022 /include
parente543ea3c6f46b336fb5a6f9ecdb9fab89e2f02ee (diff)
libsqfs: Internalize sqfs_dir_reader_find function
The only user in the code base is sqfs_dir_reader_find_by_path. Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'include')
-rw-r--r--include/sqfs/dir_reader.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/include/sqfs/dir_reader.h b/include/sqfs/dir_reader.h
index cb071c2..abd49bd 100644
--- a/include/sqfs/dir_reader.h
+++ b/include/sqfs/dir_reader.h
@@ -166,19 +166,6 @@ SQFS_API int sqfs_dir_reader_open_dir(sqfs_dir_reader_t *rd,
SQFS_API int sqfs_dir_reader_rewind(sqfs_dir_reader_t *rd);
/**
- * @brief Seek through the current directory listing to locate an
- * entry by name.
- *
- * @memberof sqfs_dir_reader_t
- *
- * @param rd A pointer to a directory reader.
- * @param name The name of the entry to find.
- *
- * @return Zero on success, an @ref SQFS_ERROR value on failure.
- */
-SQFS_API int sqfs_dir_reader_find(sqfs_dir_reader_t *rd, const char *name);
-
-/**
* @brief Read a directory entry and advance the internal position indicator
* to the next one.
*