home *** CD-ROM | disk | FTP | other *** search
/ RISCWORLD 7 / RISCWORLD_VOL7.iso / Software / Issue6 / SDL.ZIP / !gcc / include / unixlib / h / fnmatch < prev    next >
Encoding:
Text File  |  2006-09-17  |  3.2 KB  |  101 lines

  1. /****************************************************************************
  2.  *
  3.  * $Source: $
  4.  * $Date: $
  5.  * $Revision: $
  6.  * $State: $
  7.  * $Author: $
  8.  *
  9.  ***************************************************************************/
  10.  
  11. /* File taken from glibc 2.3.2.
  12.  * Following changes were made:
  13.  *   <none>
  14.  */
  15.  
  16. /* Copyright (C) 1991,92,93,96,97,98,99,2001 Free Software Foundation, Inc.
  17.    This file is part of the GNU C Library.
  18.  
  19.    The GNU C Library is free software; you can redistribute it and/or
  20.    modify it under the terms of the GNU Lesser General Public
  21.    License as published by the Free Software Foundation; either
  22.    version 2.1 of the License, or (at your option) any later version.
  23.  
  24.    The GNU C Library is distributed in the hope that it will be useful,
  25.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  26.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  27.    Lesser General Public License for more details.
  28.  
  29.    You should have received a copy of the GNU Lesser General Public
  30.    License along with the GNU C Library; if not, write to the Free
  31.    Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  32.    02111-1307 USA.  */
  33.  
  34. #ifndef    _FNMATCH_H
  35. #define    _FNMATCH_H    1
  36.  
  37. #ifdef    __cplusplus
  38. extern "C" {
  39. #endif
  40.  
  41. #if defined __cplusplus || (defined __STDC__ && __STDC__) || defined WINDOWS32
  42. # if !defined __GLIBC__ || !defined __P
  43. #  undef    __P
  44. #  define __P(protos)    protos
  45. # endif
  46. #else /* Not C++ or ANSI C.  */
  47. # undef    __P
  48. # define __P(protos)    ()
  49. /* We can get away without defining `const' here only because in this file
  50.    it is used only inside the prototype for `fnmatch', which is elided in
  51.    non-ANSI C where `const' is problematical.  */
  52. #endif /* C++ or ANSI C.  */
  53.  
  54. #ifndef const
  55. # if (defined __STDC__ && __STDC__) || defined __cplusplus
  56. #  define __const    const
  57. # else
  58. #  define __const
  59. # endif
  60. #endif
  61.  
  62. /* We #undef these before defining them because some losing systems
  63.    (HP-UX A.08.07 for example) define these in <unistd.h>.  */
  64. #undef    FNM_PATHNAME
  65. #undef    FNM_NOESCAPE
  66. #undef    FNM_PERIOD
  67.  
  68. /* Bits set in the FLAGS argument to `fnmatch'.  */
  69. #define    FNM_PATHNAME    (1 << 0) /* No wildcard can ever match `/'.  */
  70. #define    FNM_NOESCAPE    (1 << 1) /* Backslashes don't quote special chars.  */
  71. #define    FNM_PERIOD    (1 << 2) /* Leading `.' is matched only explicitly.  */
  72.  
  73. #if !defined _POSIX_C_SOURCE || _POSIX_C_SOURCE < 2 || defined _GNU_SOURCE
  74. # define FNM_FILE_NAME     FNM_PATHNAME    /* Preferred GNU name.  */
  75. # define FNM_LEADING_DIR (1 << 3)    /* Ignore `/...' after a match.  */
  76. # define FNM_CASEFOLD     (1 << 4)    /* Compare without regard to case.  */
  77. # define FNM_EXTMATCH     (1 << 5)    /* Use ksh-like extended matching. */
  78. #endif
  79.  
  80. /* Value returned by `fnmatch' if STRING does not match PATTERN.  */
  81. #define    FNM_NOMATCH    1
  82.  
  83. /* This value is returned if the implementation does not support
  84.    `fnmatch'.  Since this is not the case here it will never be
  85.    returned but the conformance test suites still require the symbol
  86.    to be defined.  */
  87. #ifdef _XOPEN_SOURCE
  88. # define FNM_NOSYS    (-1)
  89. #endif
  90.  
  91. /* Match NAME against the filename pattern PATTERN,
  92.    returning zero if it matches, FNM_NOMATCH if not.  */
  93. extern int fnmatch __P ((__const char *__pattern, __const char *__name,
  94.              int __flags));
  95.  
  96. #ifdef    __cplusplus
  97. }
  98. #endif
  99.  
  100. #endif /* fnmatch.h */
  101.