comparison ffstools/tiffs-rd/globals.c @ 231:5ceacdbd4490

tiffs IVA: finds the root inode
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Sun, 26 Jan 2014 08:11:42 +0000
parents
children 024042383a26
comparison
equal deleted inserted replaced
230:ffaa033e7643 231:5ceacdbd4490
1 /*
2 * Definitions of global variables for the tiffs IVA program.
3 */
4
5 #include "types.h"
6 #include "struct.h"
7
8 char *imgfile;
9 u32 eraseblk_size;
10 int total_blocks;
11 u32 total_ffs_size;
12 int index_blk_num = -1, root_inode;
13 int inode_limit;
14 int verbose;
15
16 u8 *image, *inode_block;
17 struct inode_info **inode_info;