home *** CD-ROM | disk | FTP | other *** search
- /******************************************************************************
- * Module : Unpost header file.
- *
- * Author : John W. M. Stevens
- ******************************************************************************/
-
- #if ! defined(UNPOST_HEADER_FILE)
- #define UNPOST_HEADER_FILE
-
- /* Global constants. */
- #define TRUE 1
- #define ERROR 1
- #define MATCH 1
- #define FALSE 0
- #define OK 0
-
- #define FL_NM_SZ 256
- #define BFR_SIZE 512
-
- #if ! defined(_OS2EMX_H)
- typedef unsigned char BYTE;
- #endif
-
- /* Function prototypes. */
- extern
- int ReadLine(FILE *FlPtr,
- char *InBfr,
- int BfrMax);
- extern
- char *StrDup(char *Str);
- extern
- int FileExists(char *FlName);
-
- #endif
-