home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_200 / 241_01 / routine.hs < prev    next >
Encoding:
Text File  |  1987-08-29  |  896 b   |  29 lines

  1. /*
  2. HEADER:         CUG241;
  3. TITLE:          Simple weather predictor expert system to demonstrate
  4.                 the IFRUN, ANDTHENRUN, etc., keywords. 
  5. DATE:           12/30/85;
  6. VERSION:
  7. DESCRIPTION:   "Source code for a simple Expert System.";
  8. KEYWORDS:       Artificial Intelligence, expert systems, weather predictor;
  9. SYSTEM:         MS-DOS or UNIX System V;
  10. FILENAME:       ROUTINE.H;
  11. WARNINGS:      "User-supported, non-commercial"
  12. AUTHORS:        George Hageman; 
  13. COMPILERS:      Microsoft C V3.00 or UNIX System V Portable C Compiler;
  14. REFERENCES:     ;
  15. ENDREF
  16. */
  17.  
  18. /*
  19. **    these are the two return values
  20. **    which must be returned as the exit
  21. **    value.  Any other will result in
  22. **    an assumption that the result is true
  23. **    or that some sort of error occured.
  24. */
  25.  
  26. #define RETURN_ROUTINE_TRUE    254
  27. #define RETURN_ROUTINE_FALSE    255
  28.  
  29.