home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / misc / volume11 / rpl / part02 / relcmd.h < prev    next >
C/C++ Source or Header  |  1990-03-10  |  431b  |  30 lines

  1. /****************************************************************
  2.  
  3. Module:
  4.     RelCmd
  5.  
  6. Description:
  7.     Commands implementing relational operations
  8.  
  9.  
  10. Modification history:
  11.  
  12.     0.0    hjp    89-07-14
  13.  
  14.         initial version
  15.  
  16. ****************************************************************/
  17.  
  18. #ifndef I_relcmd
  19.  
  20.     #define I_relcmd
  21.  
  22.     void c_gt (void);
  23.     void c_ge (void);
  24.     void c_eq (void);
  25.     void c_le (void);
  26.     void c_lt (void);
  27.     void c_ne (void);
  28.  
  29. #endif
  30.