1: /* @(#)strfile.h 1.2 (Berkeley) 5/14/81 */
2:
3: # define MAXDELIMS 3
4:
5: /*
6: * bits for flag field
7: */
8:
9: # define STR_RANDOM 0x1
10: # define STR_ORDERED 0x2
11:
12: struct strfile { /* information table */
13: unsigned int str_numstr; /* # of strings in the file */
14: unsigned int str_longlen; /* length of longest string */
15: unsigned int str_shortlen; /* length of shortest string */
16: long str_delims[MAXDELIMS]; /* delimiter markings */
17: int str_flags; /* bit field for flags */
18: };
19:
20: typedef struct strfile STRFILE;
Defined struct's
Defined typedef's
Defined macros
Usage of this include