diff options
author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-05-20 11:56:28 +0200 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-05-20 12:02:53 +0200 |
commit | 13cc42ce135155f0437298540b0bc5a821d7a644 (patch) | |
tree | 18acd391d928db760a73d8b7c5231899ec7e7812 /include/squashfs.h | |
parent | c2e01ed987e942005fa66f11d96b8edb1d930c99 (diff) |
cleanup: remove overly excessive comments
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'include/squashfs.h')
-rw-r--r-- | include/squashfs.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/squashfs.h b/include/squashfs.h index 5574b29..f9df73d 100644 --- a/include/squashfs.h +++ b/include/squashfs.h @@ -240,11 +240,14 @@ typedef enum { SQUASHFS_XATTR_PREFIX_MASK = 0xFF, } E_SQFS_XATTR_TYPE; +/* Returns 0 on success. Prints error messages to stderr on failure. */ int sqfs_super_init(sqfs_super_t *super, size_t block_size, uint32_t mtime, E_SQFS_COMPRESSOR compressor); +/* Returns 0 on success. Prints error messages to stderr on failure. */ int sqfs_super_write(sqfs_super_t *super, int fd); +/* Returns 0 on success. Prints error messages to stderr on failure. */ int sqfs_super_read(sqfs_super_t *super, int fd); #endif /* SQUASHFS_H */ |