fun.h - scc - simple c99 compiler
(HTM) git clone git://git.simple-cc.org/scc
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) Submodules
(DIR) README
(DIR) LICENSE
---
fun.h (834B)
---
1 extern int coff32new(Obj *, int);
2 extern int coff32read(Obj *, FILE *);
3 extern int coff32setidx(long, char **, long *, FILE *);
4 extern int coff32getidx(long *, char ***, long **, FILE *);
5 extern int coff32pc2line(Obj *, unsigned long long, char *, int *);
6 extern int coff32strip(Obj *);
7 extern void coff32del(Obj *);
8 extern int coff32write(Obj *, Map *, FILE *);
9 extern int coff32probe(unsigned char *, char **);
10 extern int coff32type(char *);
11
12 extern int coff32xsetidx(int, long , char *[], long[], FILE *);
13 extern int coff32xgetidx(int, long *, char ***, long **, FILE *);
14
15 extern Symbol *coff32getsym(Obj *, int *, Symbol *);
16 extern Symbol *coff32setsym(Obj *, int *, Symbol *);
17 extern Section *coff32getsec(Obj *, int *, Section *);
18 extern Section *coff32setsec(Obj *, int *, Section *);
19 extern Map *coff32loadmap(Obj *, FILE *);