mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-01-06 16:04:43 +08:00
8 lines
248 B
C
8 lines
248 B
C
typedef void * segtab;
|
|
|
|
void init_seglocations(segtab * r);
|
|
void add_seglocation(segtab * r, int localseg, int destseg, long offset);
|
|
int get_seglocation(segtab * r, int localseg, int * destseg, long * offset);
|
|
void done_seglocations(segtab * r);
|
|
|