home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / nasm097s.zip / LABELS.H < prev    next >
Text File  |  1997-10-02  |  791b  |  19 lines

  1. /* labels.h  header file for labels.c
  2.  *
  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.  */
  8.  
  9. int lookup_label (char *label, long *segment, long *offset);
  10. int is_extern (char *label);
  11. void define_label (char *label, long segment, long offset, char *special,
  12.            int is_norm, int isextrn, struct ofmt *ofmt, efunc error);
  13. void define_common (char *label, long segment, long size, char *special,
  14.             struct ofmt *ofmt, efunc error);
  15. void define_label_stub (char *label, efunc error);
  16. void declare_as_global (char *label, char *special, efunc error);
  17. int init_labels (void);
  18. void cleanup_labels (void);
  19.