home *** CD-ROM | disk | FTP | other *** search
- /************************************************************************/
- /* Copyright 1988 by Chuck Musciano and Harris Corporation */
- /* */
- /* Permission to use, copy, modify, and distribute this software */
- /* and its documentation for any purpose and without fee is */
- /* hereby granted, provided that the above copyright notice */
- /* appear in all copies and that both that copyright notice and */
- /* this permission notice appear in supporting documentation, and */
- /* that the name of Chuck Musciano and Harris Corporation not be */
- /* used in advertising or publicity pertaining to distribution */
- /* of the software without specific, written prior permission. */
- /* Chuck Musciano and Harris Corporation make no representations */
- /* about the suitability of this software for any purpose. It is */
- /* provided "as is" without express or implied warranty. */
- /************************************************************************/
-
- /************************************************************************/
- /* */
- /* Module: globals.c */
- /* */
- /* Function: Define global variables */
- /* */
- /* Change History: 14 Nov 86 Creation */
- /* */
- /************************************************************************/
-
- #include "manifest.h"
- #include "globals.h"
-
- int curr_mode = SCIENTIFIC;
- int inverted = FALSE;
- int temp_inverted = FALSE;
-
- int curr_base = DECIMAL;
- int ee_mode = FALSE;
- int eng_mode = FALSE;
- int edit_ee = FALSE;
- int trig_mode = DEG;
- int curr_width[5] = {-1, 16, 0, 32, 32};
-
- double v_stack[MAX_STACK] = {0.0};
- int o_stack[MAX_STACK] = {0};
- int v_top = 0;
- int o_top = 0;
-