HomeSort by: relevance | last modified time | path
    Searched refs:FNM_LEADING_DIR (Results 1 - 3 of 3) sorted by relevancy

  /src/include/
fnmatch.h 48 #define FNM_LEADING_DIR 0x10 /* Ignore /<tail> after Imatch. */
  /src/tests/lib/libc/gen/
t_fnmatch.c 81 atf_tc_set_md_var(tc, "descr", "Test FNM_LEADING_DIR");
91 ATF_CHECK(fnmatch("", "/*", FNM_LEADING_DIR) == 0);
92 ATF_CHECK(fnmatch(" ", " /*", FNM_LEADING_DIR) == 0);
93 ATF_CHECK(fnmatch("x", "x/*", FNM_LEADING_DIR) == 0);
94 ATF_CHECK(fnmatch("///", "////*", FNM_LEADING_DIR) == 0);
  /src/lib/libc/gen/
fnmatch.c 132 if ((flags & FNM_LEADING_DIR) && *string == '/')
160 return (flags & FNM_LEADING_DIR) ||

Completed in 14 milliseconds