Joao Marcos Costa | c510061 | 2020-07-30 15:33:47 +0200 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
| 2 | /* |
| 3 | * Copyright (C) 2020 Bootlin |
| 4 | * |
| 5 | * Author: Joao Marcos Costa <joaomarcos.costa@bootlin.com> |
| 6 | * |
| 7 | * squashfs.h: SquashFS filesystem implementation. |
| 8 | */ |
| 9 | |
| 10 | #ifndef _SQFS_H_ |
| 11 | #define _SQFS_H_ |
| 12 | |
| 13 | struct disk_partition; |
| 14 | |
| 15 | int sqfs_opendir(const char *filename, struct fs_dir_stream **dirsp); |
| 16 | int sqfs_readdir(struct fs_dir_stream *dirs, struct fs_dirent **dentp); |
| 17 | int sqfs_probe(struct blk_desc *fs_dev_desc, |
| 18 | struct disk_partition *fs_partition); |
| 19 | int sqfs_read(const char *filename, void *buf, loff_t offset, |
| 20 | loff_t len, loff_t *actread); |
| 21 | int sqfs_size(const char *filename, loff_t *size); |
Richard Genoud | dd4866b | 2020-11-03 12:11:26 +0100 | [diff] [blame] | 22 | int sqfs_exists(const char *filename); |
Joao Marcos Costa | c510061 | 2020-07-30 15:33:47 +0200 | [diff] [blame] | 23 | void sqfs_close(void); |
| 24 | void sqfs_closedir(struct fs_dir_stream *dirs); |
| 25 | |
| 26 | #endif /* SQFS_H */ |