home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / mint / mntdoc01.zoo / mintdoc / c_src / pure_lib.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-02-20  |  904 b   |  18 lines

  1. /********************************************************************/
  2. /* pure_lib.h - library of support routines for programs processing */
  3. /*              Pure-C help source files.                           */
  4. /*                                                                  */
  5. /* Copyright (c) 1993 by Hildo Biersma - Evil Eye Software          */
  6. /*                            e-mail: boender@dutiws.twi.tudelft.nl */
  7. /*        Evil Eye Software - ``Software with a Purpose''           */
  8. /*                                                                  */
  9. /* Freeware - do with this what you like, but leave my name.        */
  10. /********************************************************************/
  11.  
  12. /* Support library prototypes */
  13. int  open_source(const char *filename);
  14. char **get_next_header(void);
  15. long get_position(void);
  16. char **get_body(void);
  17. void close_source(void);
  18.