home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS - Coast to Coast / simteldosarchivecoasttocoast2.iso / c / clp_v11.zip / CLP.H < prev    next >
Text File  |  1989-05-17  |  1KB  |  27 lines

  1. /*===========================================================================
  2.  *                                                                          *
  3.  *        -  C  L  P  -           Command-Line Parameter Processor          *
  4.  *        --------------------------------------------------------          *
  5.  *                                                                          *
  6.  *  Written by     : Karl Keyte                                             *
  7.  *  Date           : April 1989 (Original)                                  *
  8.  *  e-Mail         : ESC1332@ESOC.BITNET            Version 1.1             *
  9.  *  Phone:         : +(49) 6151 886783              May 1989                *
  10.  *                                                                          *
  11.  *==========================================================================*/
  12.  
  13. #define      CLP_ERROR             -1
  14. #define      CLP_NOTSPECIFIED       0
  15. #define      CLP_DEFAULTED          1
  16. #define      CLP_SPECIFIED          2
  17. #define      CLP_VALUEDEFAULTED     3
  18. #define      CLP_VALUESPECIFIED     4
  19. #define      CLP_NEGATED            5
  20.  
  21. void far   clp_accept     ( char * , int , char ** );
  22. int  far   clp_get_spec   ( char * );
  23. char * far clp_get_value  ( char * );
  24. void far   clp_release    ( void );
  25.  
  26. /*--------------------------------------------------------------------------*/
  27.