home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 3 / TheARMClub_PDCD3.iso / hensa / programming / spplib_1 / spplib / h / spp
Encoding:
Text File  |  1997-08-05  |  723 b   |  14 lines

  1. /* 
  2.     h.spp - header file for
  3.     spplib  - © GCW  August 1997
  4.     A library for preprocessed input
  5. */
  6.  
  7. extern void spp_init(char *fname);    /* initialise - use only once and before
  8.                                                               the others */
  9. extern int  spp_fgets(char *buf);        /* read a line of preprocessed
  10.                                                               input into buf - returns 0 when no more */
  11. extern int spp_fclose(void);               /* shut-down - only needed for error
  12.                                                               handling as spp_fgets will have closed all
  13.                                                               the files by the time it returns 0 */
  14.