/** Returned by fnmatch() if matching failed. */ #define FNM_NOMATCH 1
/** Returned by fnmatch() if the function is not supported. This is never returned on Android. */ #define FNM_NOSYS 2
/** fnmatch() flag to disable backslash escaping. */ #define FNM_NOESCAPE 0x01 /** fnmatch() flag to ensure that slashes must be matched by slashes. */ #define FNM_PATHNAME 0x02 /** fnmatch() flag to ensure that periods must be matched by periods. */ #define FNM_PERIOD 0x04 /** fnmatch() flag to ignore /... after a match. */ #define FNM_LEADING_DIR 0x08 /** fnmatch() flag for a case-insensitive search. */ #define FNM_CASEFOLD 0x10
/** Synonym for `FNM_CASEFOLD`: case-insensitive search. */ #define FNM_IGNORECASE FNM_CASEFOLD /** Synonym for `FNM_PATHNAME`: slashes must be matched by slashes. */ #define FNM_FILE_NAME FNM_PATHNAME
/** *[fnmatch(3)](https://man7.org/linux/man-pages/man3/fnmatch.3.html) matches `__string` against *theshellwildcard`__pattern`. * *Returns0onsuccess,andreturns`FNM_NOMATCH`onfailure.
*/ int fnmatch(constchar* _Nonnull __pattern, constchar* _Nonnull __string, int __flags);
__END_DECLS
Messung V0.5 in Prozent
¤ Dauer der Verarbeitung: 0.12 Sekunden
(vorverarbeitet am 2026-06-28)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.