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

Diff for /src/include/glob.h between version 1.1 and 1.2

version 1.1, 1995/10/18 08:41:12 version 1.2, 1997/09/01 18:40:35
Line 1 
Line 1 
   /*      $OpenBSD$       */
 /*      $NetBSD: glob.h,v 1.5 1994/10/26 00:55:56 cgd Exp $     */  /*      $NetBSD: glob.h,v 1.5 1994/10/26 00:55:56 cgd Exp $     */
   
 /*  /*
Line 65 
Line 66 
         int (*gl_stat) __P((const char *, struct stat *));          int (*gl_stat) __P((const char *, struct stat *));
 } glob_t;  } glob_t;
   
   /* Flags */
 #define GLOB_APPEND     0x0001  /* Append to output from previous call. */  #define GLOB_APPEND     0x0001  /* Append to output from previous call. */
 #define GLOB_DOOFFS     0x0002  /* Use gl_offs. */  #define GLOB_DOOFFS     0x0002  /* Use gl_offs. */
 #define GLOB_ERR        0x0004  /* Return on error. */  #define GLOB_ERR        0x0004  /* Return on error. */
Line 81 
Line 83 
 #define GLOB_TILDE      0x0800  /* Expand tilde names from the passwd file. */  #define GLOB_TILDE      0x0800  /* Expand tilde names from the passwd file. */
 #endif  #endif
   
   /* Error values returned by glob(3) */
 #define GLOB_NOSPACE    (-1)    /* Malloc call failed. */  #define GLOB_NOSPACE    (-1)    /* Malloc call failed. */
 #define GLOB_ABEND      (-2)    /* Unignored error. */  #define GLOB_ABORTED    (-2)    /* Unignored error. */
   #define GLOB_NOMATCH    (-3)    /* No match and GLOB_NOCHECK not set. */
   #define GLOB_NOSYS      (-4)    /* Function not supported. */
   
 __BEGIN_DECLS  __BEGIN_DECLS
 int     glob __P((const char *, int, int (*)(const char *, int), glob_t *));  int     glob __P((const char *, int, int (*)(const char *, int), glob_t *));

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