home *** CD-ROM | disk | FTP | other *** search
/ Stars of Shareware: Programmierung / SOURCE.mdf / programm / msdos / c / src_cpp / include / standard.hpp < prev   
Encoding:
C/C++ Source or Header  |  1993-06-04  |  583 b   |  30 lines

  1. // Some useful little functions.  -Mark
  2. #ifndef __STANDARD_HPP
  3. #define __STANDARD_HPP
  4.  
  5. #ifdef REND386
  6. #include <stdlib.h>
  7. int sub_exit(atexit_t func);
  8. void sub_exit_funcs();
  9. void reset_sub_exits();
  10. #endif
  11.  
  12. #ifndef __OWL_H
  13. #ifndef _TV_VERSION
  14. typedef enum { False = 0, True } Boolean;
  15. #endif
  16. #endif
  17.  
  18. #ifdef __cplusplus
  19. // Snaked from Borland help.
  20.   int max (int value1, int value2);
  21.   int min (int value1, int value2);
  22.   double max (double value1, double value2);
  23.   double min (double value1, double value2);
  24. #endif
  25.  
  26. extern char NEWLINE_STR[4];
  27.  
  28. #endif
  29.  
  30.