refactored some code. compiles now without suppresing any warning with gcc-6.3.0.
[AROS.git] / tools / collect-aros / gensets.h
blobffcb0d43516ce8d00af97f2b733547dce37ff7e6
1 /*
2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 #ifndef _GENSETS_H_
7 #define _GENSETS_H_
9 #include <stdio.h>
11 typedef struct setnode
13 char *secname;
14 int off_setname;
15 unsigned long pri;
16 struct setnode *next;
17 } setnode;
19 void parse_secname(const char *secname, setnode **setlist_ptr);
20 void parse_format(const char *format);
21 void emit_sets(setnode *setlist, FILE *out);
22 void emit_libs(setnode *liblist, FILE *out);
24 #endif /* !_GENSETS_H_ */