home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / INFO / C / GLOB.ZIP / GLOB.H < prev    next >
Encoding:
C/C++ Source or Header  |  1987-07-20  |  374 b   |  13 lines

  1. /*
  2.  *    Header file for wildcard routines 
  3.  */
  4.  
  5. #define GE_BADPATH     -1    /* invalid path - directory not found    */
  6. #define GE_AMBIGUOUS     -2    /* ambiguous directory spec        */
  7. #define GE_MAXFILES     -3    /* too many files found (MAXFILES)    */
  8. #define GE_NOMEM     -4    /* out of memory            */
  9.  
  10. extern int globerror;        /* PUBLIC - global error number */
  11. extern char **glob( char * );
  12.  
  13.