home *** CD-ROM | disk | FTP | other *** search
- // Some useful little functions. -Mark
- #ifndef __STANDARD_HPP
- #define __STANDARD_HPP
-
- #ifdef REND386
- #include <stdlib.h>
- int sub_exit(atexit_t func);
- void sub_exit_funcs();
- void reset_sub_exits();
- #endif
-
- #ifndef __OWL_H
- #ifndef _TV_VERSION
- typedef enum { False = 0, True } Boolean;
- #endif
- #endif
-
- #ifdef __cplusplus
- // Snaked from Borland help.
- int max (int value1, int value2);
- int min (int value1, int value2);
- double max (double value1, double value2);
- double min (double value1, double value2);
- #endif
-
- extern char NEWLINE_STR[4];
-
- #endif
-
-