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

Diff for /src/usr.bin/cvs/file.h between version 1.1 and 1.2

version 1.1, 2004/07/30 01:49:23 version 1.2, 2004/07/30 11:50:33
Line 193 
Line 193 
         struct cvs_flist cd_files;          struct cvs_flist cd_files;
 };  };
   
   
   #define CVS_DIR_ROOT(f)  (((f)->cf_type == DTDIR) ? \
           (f)->cf_ddat->cd_root : (((f)->cf_parent == NULL) ? \
           NULL : (f)->cf_parent->cf_ddat->cd_root))
   
   
 int      cvs_file_init    (void);  int      cvs_file_init    (void);
 int      cvs_file_ignore  (const char *);  int      cvs_file_ignore  (const char *);
 int      cvs_file_chkign  (const char *);  int      cvs_file_chkign  (const char *);
 CVSFILE* cvs_file_create  (const char *, u_int, mode_t);  CVSFILE* cvs_file_create  (const char *, u_int, mode_t);
 CVSFILE* cvs_file_get     (const char *, int);  CVSFILE* cvs_file_get     (const char *, int);
 CVSFILE* cvs_file_getspec (char **, int, int);  CVSFILE* cvs_file_getspec (char **, int, int);
 void     cvs_file_free    (struct cvs_file *);  CVSFILE* cvs_file_find    (CVSFILE *, const char *);
 int      cvs_file_examine (CVSFILE *, int (*)(CVSFILE *, void *), void *);  int      cvs_file_examine (CVSFILE *, int (*)(CVSFILE *, void *), void *);
   void     cvs_file_free    (struct cvs_file *);
   
   
 #endif /* FILE_H */  #endif /* FILE_H */

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.2