comparison ffstools/tiffs-rd/struct.h @ 234:024042383a26

tiffs IVA: ls reports file sizes
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Sun, 26 Jan 2014 11:47:13 +0000
parents 5ceacdbd4490
children
comparison
equal deleted inserted replaced
233:ae9ff2d1e3da 234:024042383a26
21 u16 repli; /* ??? */ 21 u16 repli; /* ??? */
22 }; 22 };
23 23
24 /* our own distilled info struct */ 24 /* our own distilled info struct */
25 struct inode_info { 25 struct inode_info {
26 int ino;
26 /* info from the inode record */ 27 /* info from the inode record */
27 int type; 28 int type;
28 int descend; 29 int descend;
29 int sibling; 30 int sibling;
30 u16 len; 31 u16 len;
35 int nparents; 36 int nparents;
36 int parent; 37 int parent;
37 /* filled by misc */ 38 /* filled by misc */
38 u8 *byte_after_name; 39 u8 *byte_after_name;
39 }; 40 };
41
42 /* chunk location and size info */
43 struct chunkinfo {
44 u8 *start;
45 u8 *end;
46 size_t len;
47 };