home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / misc / volume36 / unpost / part07 / unpost.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-04-18  |  764 b   |  35 lines

  1. /******************************************************************************
  2. * Module    :   Unpost header file.
  3. *
  4. * Author    :   John W. M. Stevens
  5. ******************************************************************************/
  6.  
  7. #if ! defined(UNPOST_HEADER_FILE)
  8. #define     UNPOST_HEADER_FILE
  9.  
  10. /*  Global constants.   */
  11. #define TRUE    1
  12. #define ERROR   1
  13. #define MATCH   1
  14. #define FALSE   0
  15. #define OK      0
  16.  
  17. #define FL_NM_SZ    256
  18. #define BFR_SIZE    512
  19.  
  20. #if     ! defined(_OS2EMX_H)
  21. typedef unsigned    char    BYTE;
  22. #endif
  23.  
  24. /*  Function prototypes.    */
  25. extern
  26. int     ReadLine(FILE   *FlPtr,
  27.                  char   *InBfr,
  28.                  int    BfrMax);
  29. extern
  30. char    *StrDup(char    *Str);
  31. extern
  32. int     FileExists(char     *FlName);
  33.  
  34. #endif
  35.