Home
last modified time | relevance | path

Searched refs:FNM_LEADING_DIR (Results 1 – 9 of 9) sorted by relevance

/glibc-2.36/posix/
Dtestfnm.c54 { "a/b", "*a*", FNM_PATHNAME|FNM_LEADING_DIR, 0 },
55 { "ab/c", "*a?", FNM_PATHNAME|FNM_LEADING_DIR, 0 },
56 { "ab/c", "a?", FNM_PATHNAME|FNM_LEADING_DIR, 0 },
Dtst-fnmatch.c272 result |= FNM_LEADING_DIR; in convert_flags()
325 if (flags & FNM_LEADING_DIR) in flag_output()
Dfnmatch.h38 # define FNM_LEADING_DIR (1 << 3) /* Ignore `/...' after a match. */ macro
Dfnmatch_loop.c150 if (flags & FNM_LEADING_DIR) in FCT()
926 if ((flags & FNM_LEADING_DIR) && n != string_end && *n == L_('/')) in FCT()
/glibc-2.36/manual/
Dpattern.texi112 @item FNM_LEADING_DIR
/glibc-2.36/
DNEWS7149 * The `fnmatch' function supports the new flag bits `FNM_LEADING_DIR' and
7150 `FNM_CASEFOLD'. `FNM_LEADING_DIR' lets a pattern like `foo*' match a
/glibc-2.36/ChangeLog.old/
DChangeLog.23006 * posix/fnmatch.h (FNM_LEADING_DIR): New flag.
DChangeLog.11806 * posix/fnmatch_loop.c: Make FNM_LEADING_DIR behave as GNU tar
808 * posix/tst-fnmatch.input: Add test cases for FNM_LEADING_DIR.
DChangeLog.101216 * posix/fnmatch_loop.c: Fix problem with FNM_LEADING_DIR.