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
Defined typedef's
Defined macros
Usage of this include