comparison lwar/lwar.c @ 0:2c24602be78f

Initial import from lwtools 3.0.1 version, with new hand built build system and file reorganization
author lost@l-w.ca
date Wed, 19 Jan 2011 22:27:17 -0700
parents
children 6eed14cccac9
comparison
equal deleted inserted replaced
-1:000000000000 0:2c24602be78f
1 /*
2 lwar.c
3 Copyright © 2009 William Astle
4
5 This file is part of LWAR.
6
7 LWAR is free software: you can redistribute it and/or modify it under the
8 terms of the GNU General Public License as published by the Free Software
9 Foundation, either version 3 of the License, or (at your option) any later
10 version.
11
12 This program is distributed in the hope that it will be useful, but WITHOUT
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
15 more details.
16
17 You should have received a copy of the GNU General Public License along with
18 this program. If not, see <http://www.gnu.org/licenses/>.
19
20
21 Implements the program startup code
22
23 */
24
25 #include <stdio.h>
26 #include <stdlib.h>
27 #include <sys/stat.h>
28 #include <sys/types.h>
29 #include <unistd.h>
30
31 #define __lwar_c_seen__
32 #include "lwar.h"
33 #include "util.h"
34
35 typedef struct
36 {
37 FILE *f;
38 } arhandle_real;
39
40 int debug_level = 0;
41 int operation = 0;
42 int nfiles = 0;
43 char *archive_file = NULL;
44 int mergeflag = 0;
45
46 char **files = NULL;
47
48 void add_file_name(char *fn)
49 {
50 files = lw_realloc(files, sizeof(char *) * (nfiles + 1));
51 files[nfiles] = fn;
52 nfiles++;
53 }