Searched refs:STREQ (Results 1 – 1 of 1) sorted by relevance
/ndk/sources/host-tools/make-3.81/glob/ |
D | fnmatch.c | 89 # define STREQ(s1, s2) ((strcmp (s1, s2) == 0)) macro 111 (STREQ (string, "alpha") || STREQ (string, "upper") \ 112 || STREQ (string, "lower") || STREQ (string, "digit") \ 113 || STREQ (string, "alnum") || STREQ (string, "xdigit") \ 114 || STREQ (string, "space") || STREQ (string, "print") \ 115 || STREQ (string, "punct") || STREQ (string, "graph") \ 116 || STREQ (string, "cntrl") || STREQ (string, "blank")) 376 if ((STREQ (str, "alnum") && ISALNUM ((unsigned char) *n)) 377 || (STREQ (str, "alpha") && ISALPHA ((unsigned char) *n)) 378 || (STREQ (str, "blank") && ISBLANK ((unsigned char) *n)) [all …]
|