1 /*  Copyright 2001 Rien Croonenborghs, Ben Kibbey, Shaun Jackman, Ivan Brozovic
2 
3     This file is part of lcab.
4     lcab is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8     lcab is distributed in the hope that it will be useful,
9     but WITHOUT ANY WARRANTY; without even the implied warranty of
10     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11     GNU General Public License for more details.
12     You should have received a copy of the GNU General Public License
13     along with lcab; if not, write to the Free Software
14     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
15 */
16 
17 #ifndef MYTYPESH
18 #include "mytypes.h"
19 #endif
20 #ifndef CSTRUCTH
21 #include "cstruct.h"
22 #endif
23 
24 #ifndef CWRITEH
25 #define CWRITEH
26 
27 
28 int cheaderwrite(struct cheader *ch, FILE *fpout);
29 int cfolderwrite(struct cfolder *cf, FILE *fpout);
30 
31 
32 int cfilewrite( struct cfile *cf, FILE *fpout );
33 
34 
35 long writedata( struct cdata *cd, long pos, FILE *fpout, FILE *fptemp );
36 long cdatawrite(struct cdata *cd, FILE *fpout, long pos, FILE *fptemp );
37 
38 #endif
39