home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 3 / PDCD_3.iso / pocketbk / comms / x_sun_psio / code / psvar.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-05-30  |  645 b   |  24 lines

  1. /* (C) Tim Graves 20th April 1994
  2.    This code is supplied AS IS. no warrantee either expressed or implied 
  3.    is provided. This code may be freeley modified and modified as long as my
  4.    origional authorship is acknowledged. 
  5.    
  6.    Tim Graves
  7.     Sun Microsystems
  8.      
  9.      */
  10. /* this file defines the structures for the variables, a structure for the call stack,
  11.    , a variable entry, */
  12.  
  13. struct varitem {
  14.     char * varname ;
  15.     char * varval ;
  16.     struct varitem * nextvar ;} ;
  17.  
  18. struct varstack {
  19.     struct varitem * firstitem ;
  20.     struct varstack * prevlevel;
  21.     struct varstack * nextlevel; } ;
  22. /* debugung level to work at */
  23. #define VARCALLDEBUG 2
  24.