FreeCalypso > hg > freecalypso-tools
comparison ffstools/tiffs-mkfs/globals.c @ 705:12ae93940467
tiffs-mkfs program written, compiles
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Wed, 20 May 2020 06:55:58 +0000 |
parents | |
children | e2e4aed24522 |
comparison
equal
deleted
inserted
replaced
704:dacd9fdc392a | 705:12ae93940467 |
---|---|
1 /* | |
2 * Definitions of global variables for the tiffs-mkfs program. | |
3 */ | |
4 | |
5 #include <sys/types.h> | |
6 #include <sys/param.h> | |
7 #include <stdint.h> | |
8 #include "struct.h" | |
9 | |
10 unsigned ffs_sector_size, ffs_nsectors; | |
11 char *format_name; | |
12 unsigned chunk_size_max, block_files_max; | |
13 u_char *inode_block, *data_block; | |
14 struct tiffs_inode *inode_array; | |
15 unsigned inode_fill_level, data_fill_level, objects_in_block; | |
16 unsigned blocks_written; | |
17 | |
18 char *input_host_dir; | |
19 struct tree_object root; | |
20 | |
21 char *output_filename; | |
22 int output_fd; |