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

Diff for /src/usr.bin/cvs/cvs.h between version 1.3 and 1.4

version 1.3, 2004/07/14 04:32:42 version 1.4, 2004/07/14 19:03:00
Line 258 
Line 258 
         char    *ce_timestamp;          char    *ce_timestamp;
         char    *ce_opts;          char    *ce_opts;
         char    *ce_tag;          char    *ce_tag;
           TAILQ_ENTRY(cvs_ent) ce_list;
 };  };
   
 typedef struct cvs_entries {  typedef struct cvs_entries {
         char    *cef_path;          char    *cef_path;
         FILE    *cef_file;          FILE    *cef_file;
   
         u_int    cef_nid;  /* next entry index to return for next() */          TAILQ_HEAD(, cvs_ent) cef_ent;
           struct cvs_ent       *cef_cur;
         struct cvs_ent **cef_entries;  
         u_int            cef_nbent;  
 } CVSENTRIES;  } CVSENTRIES;
   
   

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.4