home *** CD-ROM | disk | FTP | other *** search
- /*
- config header file
- */
-
- #ifndef CONFIG_H
- #define CONFIG_H
-
- #define BOOLEAN 1
- #define CHARACTER 2
- #define STRING 3
- #define REAL 5
-
- typedef struct
- {char flag; /* command line switch */
- unsigned type; /* variable type (of those #defined above) */
- int *ask; /* nonzero if user is still to be asked */
- void *var; /* pointer to variable */
- int nvar; /* # entries in var */
- } PARAM;
-
- #endif /* CONFIG_H */
-