[BACK]Return to fts.h CVS log [TXT][DIR] Up to [local] / src / include

Diff for /src/include/fts.h between version 1.12 and 1.13

version 1.12, 2009/08/27 16:19:27 version 1.13, 2010/09/24 13:56:32
Line 79 
Line 79 
   
 #define FTS_ROOTPARENTLEVEL     -1  #define FTS_ROOTPARENTLEVEL     -1
 #define FTS_ROOTLEVEL            0  #define FTS_ROOTLEVEL            0
 #define FTS_MAXLEVEL             0x7fff  #define FTS_MAXLEVEL             0x7fffffff
         short fts_level;                /* depth (-1 to N) */          int fts_level;          /* depth (-1 to N) */
   
 #define FTS_D            1              /* preorder directory */  #define FTS_D            1              /* preorder directory */
 #define FTS_DC           2              /* directory that causes cycles */  #define FTS_DC           2              /* directory that causes cycles */
Line 106 
Line 106 
 #define FTS_NOINSTR      3              /* no instructions */  #define FTS_NOINSTR      3              /* no instructions */
 #define FTS_SKIP         4              /* discard node */  #define FTS_SKIP         4              /* discard node */
         unsigned short fts_instr;       /* fts_set() instructions */          unsigned short fts_instr;       /* fts_set() instructions */
   
           unsigned short fts_spare;       /* unused */
   
         struct stat *fts_statp;         /* stat(2) information */          struct stat *fts_statp;         /* stat(2) information */
         char fts_name[1];               /* file name */          char fts_name[1];               /* file name */

Legend:
Removed from v.1.12  
changed lines
  Added in v.1.13