summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibC/fnmatch.h
AgeCommit message (Collapse)Author
2022-08-23LibC: Add missing sys/cdefs.h includeEmily Trau
Some header files use __BEGIN_DECLS without including sys/cdefs.h. This causes issues for C code that compiles against these headers, which may occur with Ports.
2021-10-04Everywhere: Fix more Copyright header inconsistenciesTim Schumacher
2021-08-19LibC: Add FNM_NOMATCH to fnmatch.hKenneth Myhra
Adding FNM_NOMATCH fixes the currently broken curl port.
2021-08-14LibC: Add stub for fnmatch and a set of defined valuesKenneth Myhra
This adds a stub for fnmatch and the following defined values: - FNM_PATHNAME - FNM_NOESCAPE - FNM_PERIOD - FNM_FILE_NAME - FNM_LEADING_DIR - FNM_CASEFOLD - FNM_EXTMATCH