[BACK]Return to tip.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / tip

Diff for /src/usr.bin/tip/Attic/tip.h between version 1.48 and 1.49

version 1.48, 2010/07/01 21:28:01 version 1.49, 2010/07/01 21:43:38
Line 61 
Line 61 
         char    *v_name;        /* variable name */          char    *v_name;        /* variable name */
         int      v_flags;       /* type and flags */          int      v_flags;       /* type and flags */
         char    *v_abbrev;      /* possible abbreviation */          char    *v_abbrev;      /* possible abbreviation */
         char    *v_value;       /* casted to a union later */  
 }  value_t;          char    *v_string;
           int      v_number;
   } value_t;
 extern value_t  vtable[];       /* variable table */  extern value_t  vtable[];       /* variable table */
   
 #define V_STRING        01      /* string valued */  #define V_STRING        01      /* string valued */
Line 75 
Line 77 
 #define V_READONLY      040     /* variable is not writable */  #define V_READONLY      040     /* variable is not writable */
 #define V_INIT          0100    /* static data space used for initialization */  #define V_INIT          0100    /* static data space used for initialization */
   
 #define vgetstr(v)      (vtable[v].v_value)  
 #define vgetnum(v)      ((long)(vtable[v].v_value))  
   
 #define vsetstr(v, s) do {                              \  
                 vtable[v].v_value = s;                  \  
         } while (0)  
 #define vsetnum(v, n) do {                              \  
                 vtable[v].v_value = (char *)(long)(n);  \  
         } while (0)  
   
 /* Variable table indexes. */  /* Variable table indexes. */
 enum {  enum {
         BEAUTIFY = 0,          BEAUTIFY = 0,
Line 232 
Line 224 
 void    vinit(void);  void    vinit(void);
 void    vlex(char *);  void    vlex(char *);
 int     vstring(char *, char *);  int     vstring(char *, char *);
   char   *vgetstr(int);
   int     vgetnum(int);
   void    vsetstr(int, char *);
   void    vsetnum(int, int);

Legend:
Removed from v.1.48  
changed lines
  Added in v.1.49