home *** CD-ROM | disk | FTP | other *** search
/ Aminet 18 / aminetcdnumber181997.iso / Aminet / text / hyper / hsc_source.lha / hsc / source / hsclib / parse.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-01-23  |  562 b   |  28 lines

  1. /*
  2.  * hsclib/parse.h
  3.  *
  4.  * functions for parsing of hsc files
  5.  *
  6.  */
  7.  
  8. #ifndef HSC_PARSE_H
  9. #define HSC_PARSE_H
  10.  
  11. /*
  12.  * global funcs
  13.  */
  14. #ifndef NOEXTERN_HSCLIB_PARSE_H
  15.  
  16. extern BOOL hsc_parse(HSCPRC * hp);
  17. extern BOOL hsc_parse_tag(HSCPRC * hp);
  18. extern BOOL hsc_parse_amp(HSCPRC * hp);
  19. extern BOOL hsc_parse_text(HSCPRC * hp);
  20. extern BOOL hsc_parse_source(HSCPRC * hp);
  21. extern BOOL hsc_parse_end(HSCPRC * hp);
  22. extern BOOL hsc_parse_end_id(HSCPRC * hp);
  23.  
  24. extern VOID remove_end_tag(HSCPRC * hp, HSCTAG * tag);
  25.  
  26. #endif /* NOEXTERN_PARSE_H */
  27. #endif /* HSC_PARSE_H */
  28.