HomeSort by relevance Sort by last modified time
    Searched refs:FNM_CASEFOLD (Results 51 - 53 of 53) sorted by null

1 23

  /ndk/sources/host-tools/make-3.81/glob/
fnmatch.c 169 # define FOLD(c) ((flags & FNM_CASEFOLD) ? tolower (c) : (c))
171 # define FOLD(c) ((flags & FNM_CASEFOLD) && ISUPPER (c) ? tolower (c) : (c))
glob.c     [all...]
  /bionic/libc/unistd/
fnmatch.c 72 * path segment of string, and FNM_CASEFOLD to ignore alpha case.
75 * Notably, non-POSIX locales with FNM_CASEFOLD produce undefined results,
149 const int nocase = !!(flags & FNM_CASEFOLD);

Completed in 54 milliseconds

1 23