home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / misc / volume1 / 8712 / mkmf / 2 / src / suffix.h < prev    next >
Encoding:
C/C++ Source or Header  |  1990-07-13  |  690 b   |  32 lines

  1. /* $Header: suffix.h,v 1.1 85/03/14 15:38:45 nicklin Exp $ */
  2.  
  3. /*
  4.  * Suffix definitions
  5.  *
  6.  * Author: Peter J. Nicklin
  7.  */
  8.  
  9. /*
  10.  * Suffix types 
  11.  */
  12. #define SFXHEAD            'h'    /* header file name suffix */
  13. #define SFXOBJ            'o'    /* object file name suffix */
  14. #define SFXOUT            'x'    /* executable file name suffix */
  15. #define SFXSRC            's'    /* source file name suffix */
  16.  
  17. /*
  18.  * Suffix table structs
  19.  */
  20. typedef struct _suffix
  21.     {
  22.     char *suffix;            /* points to a suffix */
  23.     int sfxtyp;            /* type of file name suffix */
  24.     int inctyp;            /* type of included file */
  25.     } SUFFIX;
  26.  
  27. typedef struct _sfxblk
  28.     {
  29.     SUFFIX sfx;            /* suffix struct */
  30.     struct _sfxblk *next;        /* ptr to next suffix list block */
  31.     } SFXBLK;
  32.