NASM 0.94
[nasm.git] / labels.h
blobfb466ca1c79ed71982812609fbbd29f0deefbfe7
1 /* labels.h header file for labels.c
3 * The Netwide Assembler is copyright (C) 1996 Simon Tatham and
4 * Julian Hall. All rights reserved. The software is
5 * redistributable under the licence given in the file "Licence"
6 * distributed in the NASM archive.
7 */
9 int lookup_label (char *label, long *segment, long *offset);
10 void define_label (char *label, long segment, long offset,
11 struct ofmt *ofmt, efunc error);
12 void define_common (char *label, long segment, long size,
13 struct ofmt *ofmt, efunc error);
14 void define_label_stub (char *label, efunc error);
15 void declare_as_global (char *label, efunc error);
16 int init_labels (void);
17 void cleanup_labels (void);