diff options
author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-09-27 18:15:40 +0200 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-09-27 18:15:40 +0200 |
commit | 40232f4bd4d7e8e001f7d1e8f120606f59b2c147 (patch) | |
tree | 5d763f4f22a487fd2e669efe0970615096f1f5fd /include/tar.h | |
parent | f6904a98bffe0bce5fc6aac408c141a25c0e05ab (diff) |
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 <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'include/tar.h')
-rw-r--r-- | include/tar.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/include/tar.h b/include/tar.h index 45457da..d4e72ec 100644 --- a/include/tar.h +++ b/include/tar.h @@ -16,8 +16,8 @@ typedef struct sparse_map_t { struct sparse_map_t *next; - uint64_t offset; - uint64_t count; + sqfs_u64 offset; + sqfs_u64 count; } sparse_map_t; typedef struct { @@ -80,14 +80,14 @@ typedef struct { char *name; char *link_target; sparse_map_t *sparse; - uint64_t actual_size; - uint64_t record_size; + sqfs_u64 actual_size; + sqfs_u64 record_size; bool unknown_record; tar_xattr_t *xattr; /* broken out since struct stat could contain 32 bit values on 32 bit systems. */ - int64_t mtime; + sqfs_s64 mtime; } tar_header_decoded_t; #define TAR_TYPE_FILE '0' @@ -122,10 +122,10 @@ int write_tar_header(int fd, const struct stat *sb, const char *name, unsigned int counter); /* calcuate and skip the zero padding */ -int skip_padding(int fd, uint64_t size); +int skip_padding(int fd, sqfs_u64 size); /* round up to block size and skip the entire entry */ -int skip_entry(int fd, uint64_t size); +int skip_entry(int fd, sqfs_u64 size); int read_header(int fd, tar_header_decoded_t *out); |