home *** CD-ROM | disk | FTP | other *** search
/ APDL Public Domain 1 / APDL_PD1A.iso / program / assembler / as / src / h / include < prev    next >
Encoding:
Text File  |  1992-08-20  |  225 b   |  15 lines

  1. /*
  2.  * include.h
  3.  *
  4.  * (c) Andy Duplain, August 1992.
  5.  */
  6.  
  7. #ifndef __INCLUDE_H
  8. #define __INCLUDE_H
  9.  
  10. int initInclude(void);
  11. int addInclude(const char *incpath);
  12. FILE *getInclude(const char *filename);
  13.  
  14. #endif /* __INCLUDE_H */
  15.