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;

Defined struct's

_sfxblk defined in line 27; used 2 times
  • in line 30(2)
_suffix defined in line 20; never used

Defined typedef's

SFXBLK defined in line 31; used 6 times
SUFFIX defined in line 25; used 3 times

Defined macros

SFXHEAD defined in line 12; used 1 times
SFXOBJ defined in line 13; used 1 times
SFXOUT defined in line 14; never used

Usage of this include

Last modified: 1985-07-03
Generated: 2016-12-26
Generated by src2html V0.67
page hit count: 862
Valid CSS Valid XHTML 1.0 Strict