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

Diff for /src/include/dirent.h between version 1.18 and 1.19

version 1.18, 2007/06/05 18:11:48 version 1.19, 2010/10/28 15:02:41
Line 67 
Line 67 
         long    dd_size;        /* amount of data returned by getdirentries */          long    dd_size;        /* amount of data returned by getdirentries */
         char    *dd_buf;        /* data buffer */          char    *dd_buf;        /* data buffer */
         int     dd_len;         /* size of data buffer */          int     dd_len;         /* size of data buffer */
         long    dd_seek;        /* magic cookie returned by getdirentries */          off_t   dd_seek;        /* magic cookie returned by getdirentries */
         long    dd_rewind;      /* magic cookie for rewinding */          off_t   dd_rewind;      /* magic cookie for rewinding */
         int     dd_flags;       /* flags for readdir */          int     dd_flags;       /* flags for readdir */
         struct _telldir *dd_td; /* telldir position recording */          struct _telldir *dd_td; /* telldir position recording */
         void    *dd_lock;       /* mutex to protect struct */          void    *dd_lock;       /* mutex to protect struct */
Line 104 
Line 104 
 int scandir(const char *, struct dirent ***,  int scandir(const char *, struct dirent ***,
     int (*)(struct dirent *), int (*)(const void *, const void *));      int (*)(struct dirent *), int (*)(const void *, const void *));
 int alphasort(const void *, const void *);  int alphasort(const void *, const void *);
 int getdirentries(int, char *, int, long *)  int getdirentries(int, char *, int, off_t *)
                 __attribute__ ((__bounded__(__string__,2,3)));                  __attribute__ ((__bounded__(__string__,2,3)));
 #endif /* __BSD_VISIBLE */  #endif /* __BSD_VISIBLE */
 #if __XPG_VISIBLE  #if __XPG_VISIBLE

Legend:
Removed from v.1.18  
changed lines
  Added in v.1.19