wuftpd_glob.h
上传用户:zibowangxu
上传日期:2007-01-04
资源大小:331k
文件大小:5k
源码类别:

Ftp客户端

开发平台:

Unix_Linux

  1. /****************************************************************************  
  2.  
  3.   Copyright (c) 1999 WU-FTPD Development Group.  
  4.   All rights reserved.
  5.   
  6.   Portions Copyright (c) 1980, 1985, 1988, 1989, 1990, 1991, 1993, 1994
  7.     The Regents of the University of California.
  8.   Portions Copyright (c) 1993, 1994 Washington University in Saint Louis.
  9.   Portions Copyright (c) 1996, 1998 Berkeley Software Design, Inc.
  10.   Portions Copyright (c) 1989 Massachusetts Institute of Technology.
  11.   Portions Copyright (c) 1998 Sendmail, Inc.
  12.   Portions Copyright (c) 1983, 1995, 1996, 1997 Eric P.  Allman.
  13.   Portions Copyright (c) 1997 by Stan Barber.
  14.   Portions Copyright (c) 1997 by Kent Landfield.
  15.   Portions Copyright (c) 1991, 1992, 1993, 1994, 1995, 1996, 1997
  16.     Free Software Foundation, Inc.  
  17.  
  18.   Use and distribution of this software and its source code are governed 
  19.   by the terms and conditions of the WU-FTPD Software License ("LICENSE").
  20.  
  21.   If you did not receive a copy of the license, it may be obtained online
  22.   at http://www.wu-ftpd.org/license.html.
  23.  
  24.   $Id: wuftpd_glob.h,v 1.4 1999/08/24 23:25:38 wuftpd Exp $
  25.  
  26. ****************************************************************************/
  27. #ifndef _GLOB_H
  28. #define _GLOB_H 1
  29. #ifdef __cplusplus
  30. extern "C"
  31. {
  32. #endif
  33. #undef __ptr_t
  34. #if (defined __cplusplus || (defined __STDC__ && __STDC__) 
  35.      || defined WINDOWS32)
  36. #undef __P
  37. #define __P(protos) protos
  38. #define __ptr_t void *
  39. #if !defined __GNUC__ || __GNUC__ < 2
  40. #undef __const
  41. #define __const const
  42. #endif
  43. #else /* Not C++ or ANSI C.  */
  44. #undef __P
  45. #define __P(protos) ()
  46. #undef __const
  47. #define __const
  48. #define __ptr_t char *
  49. #endif /* C++ or ANSI C.  */
  50. /* Bits set in the FLAGS argument to `glob'.  */
  51. #define GLOB_ERR (1 << 0) /* Return on read errors.  */
  52. #define GLOB_MARK (1 << 1) /* Append a slash to each name.  */
  53. #define GLOB_NOSORT (1 << 2) /* Don't sort the names.  */
  54. #define GLOB_DOOFFS (1 << 3) /* Insert PGLOB->gl_offs NULLs.  */
  55. #define GLOB_NOCHECK (1 << 4) /* If nothing matches, return the pattern.  */
  56. #define GLOB_APPEND (1 << 5) /* Append to results of a previous call.  */
  57. #define GLOB_NOESCAPE (1 << 6) /* Backslashes don't quote metacharacters.  */
  58. #define GLOB_PERIOD (1 << 7) /* Leading `.' can be matched by metachars.  */
  59. #if (!defined _POSIX_C_SOURCE || _POSIX_C_SOURCE < 2 || defined _BSD_SOURCE 
  60.      || defined _GNU_SOURCE)
  61. #define GLOB_MAGCHAR  (1 << 8) /* Set in gl_flags if any metachars seen.  */
  62. #define GLOB_ALTDIRFUNC (1 << 9) /* Use gl_opendir et al functions.  */
  63. #define GLOB_BRACE  (1 << 10) /* Expand "{a,b}" to "a" "b".  */
  64. #define GLOB_NOMAGIC  (1 << 11) /* If no magic chars, return the pattern.  */
  65. #define GLOB_TILDE  (1 << 12) /* Expand ~user and ~ to home directories. */
  66. #define GLOB_ONLYDIR  (1 << 13) /* Match only directories.  */
  67. #define __GLOB_FLAGS (GLOB_ERR|GLOB_MARK|GLOB_NOSORT|GLOB_DOOFFS| 
  68.  GLOB_NOESCAPE|GLOB_NOCHECK|GLOB_APPEND|     
  69.  GLOB_PERIOD|GLOB_ALTDIRFUNC|GLOB_BRACE|     
  70.  GLOB_NOMAGIC|GLOB_TILDE|GLOB_ONLYDIR)
  71. #else
  72. #define __GLOB_FLAGS (GLOB_ERR|GLOB_MARK|GLOB_NOSORT|GLOB_DOOFFS| 
  73.  GLOB_NOESCAPE|GLOB_NOCHECK|GLOB_APPEND|     
  74.  GLOB_PERIOD)
  75. #endif
  76. /* Error returns from `glob'.  */
  77. #define GLOB_NOSPACE 1 /* Ran out of memory.  */
  78. #define GLOB_ABORTED 2 /* Read error.  */
  79. #define GLOB_NOMATCH 3 /* No matches found.  */
  80. #ifdef _GNU_SOURCE
  81. /* Previous versions of this file defined GLOB_ABEND instead of
  82.    GLOB_ABORTED.  Provide a compatibility definition here.  */
  83. #define GLOB_ABEND GLOB_ABORTED
  84. #endif
  85. /* Structure describing a globbing run.  */
  86. #if !defined _AMIGA && !defined VMS /* Buggy compiler.   */
  87.     struct stat;
  88. #endif
  89.     typedef struct {
  90. int gl_pathc; /* Count of paths matched by the pattern.  */
  91. char **gl_pathv; /* List of matched pathnames.  */
  92. int gl_offs; /* Slots to reserve in `gl_pathv'.  */
  93. int gl_flags; /* Set to FLAGS, maybe | GLOB_MAGCHAR.  */
  94. /* If the GLOB_ALTDIRFUNC flag is set, the following functions
  95.    are used instead of the normal file access functions.  */
  96. void (*gl_closedir) __P((void *));
  97. struct dirent *(*gl_readdir) __P((void *));
  98.        __ptr_t(*gl_opendir) __P((__const char *));
  99. int (*gl_lstat) __P((__const char *, struct stat *));
  100. int (*gl_stat) __P((__const char *, struct stat *));
  101.     } glob_t;
  102. /* Do glob searching for PATTERN, placing results in PGLOB.
  103.    The bits defined above may be set in FLAGS.
  104.    If a directory cannot be opened or read and ERRFUNC is not nil,
  105.    it is called with the pathname that caused the error, and the
  106.    `errno' value from the failing call; if it returns non-zero
  107.    `glob' returns GLOB_ABEND; if it returns zero, the error is ignored.
  108.    If memory cannot be allocated for PGLOB, GLOB_NOSPACE is returned.
  109.    Otherwise, `glob' returns zero.  */
  110.     extern int glob __P((__const char *__pattern, int __flags,
  111.  int  (*__errfunc) __P((__const char *, int)),
  112.  glob_t * __pglob));
  113. /* Free storage allocated in PGLOB by a previous `glob' call.  */
  114.     extern void globfree __P((glob_t * __pglob));
  115. #ifdef _GNU_SOURCE
  116. /* Return nonzero if PATTERN contains any metacharacters.
  117.    Metacharacters can be quoted with backslashes if QUOTE is nonzero.
  118.    This function is not part of the interface specified by POSIX.2
  119.    but several programs want to use it.  */
  120.     extern int __glob_pattern_p __P((__const char *__pattern, int __quote));
  121.     extern int glob_pattern_p __P((__const char *__pattern, int __quote));
  122. #endif
  123. #ifdef __cplusplus
  124. }
  125. #endif
  126. #endif /* glob.h  */