home *** CD-ROM | disk | FTP | other *** search
- /* (C) Tim Graves 20th April 1994
- This code is supplied AS IS. no warrantee either expressed or implied
- is provided. This code may be freeley modified and modified as long as my
- origional authorship is acknowledged.
-
- Tim Graves
- Sun Microsystems
-
- */
- /* this file defines the structures for the variables, a structure for the call stack,
- , a variable entry, */
-
- struct varitem {
- char * varname ;
- char * varval ;
- struct varitem * nextvar ;} ;
-
- struct varstack {
- struct varitem * firstitem ;
- struct varstack * prevlevel;
- struct varstack * nextlevel; } ;
- /* debugung level to work at */
- #define VARCALLDEBUG 2
-