From 40232f4bd4d7e8e001f7d1e8f120606f59b2c147 Mon Sep 17 00:00:00 2001 From: David Oberhollenzer Date: Fri, 27 Sep 2019 18:15:40 +0200 Subject: Cleanup: replace fixed with data types with typedefs This is a fully automated search and replace, i.e. I ran this: git grep -l uint8_t | xargs sed -i 's/uint8_t/sqfs_u8/g' git grep -l uint16_t | xargs sed -i 's/uint16_t/sqfs_u16/g' git grep -l uint32_t | xargs sed -i 's/uint32_t/sqfs_u32/g' git grep -l uint64_t | xargs sed -i 's/uint64_t/sqfs_u64/g' git grep -l int8_t | xargs sed -i 's/int8_t/sqfs_s8/g' git grep -l int16_t | xargs sed -i 's/int16_t/sqfs_s16/g' git grep -l int32_t | xargs sed -i 's/int32_t/sqfs_s32/g' git grep -l int64_t | xargs sed -i 's/int64_t/sqfs_s64/g' and than added the appropriate definitions to sqfs/predef.h The whole point being better compatibillity with platforms that may not have an stdint.h with the propper definitions. Signed-off-by: David Oberhollenzer --- include/sqfs/io.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'include/sqfs/io.h') diff --git a/include/sqfs/io.h b/include/sqfs/io.h index 0f980d6..866389b 100644 --- a/include/sqfs/io.h +++ b/include/sqfs/io.h @@ -82,7 +82,7 @@ struct sqfs_file_t { * that the data structures in libsquashfs that use this return * directly to the caller. */ - int (*read_at)(sqfs_file_t *file, uint64_t offset, + int (*read_at)(sqfs_file_t *file, sqfs_u64 offset, void *buffer, size_t size); /** @@ -97,7 +97,7 @@ struct sqfs_file_t { * that the data structures in libsquashfs that use this return * directly to the caller. */ - int (*write_at)(sqfs_file_t *file, uint64_t offset, + int (*write_at)(sqfs_file_t *file, sqfs_u64 offset, const void *buffer, size_t size); /** @@ -105,7 +105,7 @@ struct sqfs_file_t { * * @param file A pointer to the file object. */ - uint64_t (*get_size)(const sqfs_file_t *file); + sqfs_u64 (*get_size)(const sqfs_file_t *file); /** * @brief Extend or shrink a file to a specified size. @@ -117,7 +117,7 @@ struct sqfs_file_t { * that the data structures in libsquashfs that use this return * directly to the caller. */ - int (*truncate)(sqfs_file_t *file, uint64_t size); + int (*truncate)(sqfs_file_t *file, sqfs_u64 size); }; #ifdef __cplusplus -- cgit v1.2.3