Files
banan-os/userspace/libraries/LibC/include/fnmatch.h
Bananymous c69919738b BuildSystem: Move all userpace libraries under the userspace directory
As the number of libraries is increasing, root directory starts to
expand. This adds better organization for libraries
2024-06-18 13:14:35 +03:00

20 lines
344 B
C

#ifndef _FNMATCH_H
#define _FNMATCH_H 1
// https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/fnmatch.h.html
#include <sys/cdefs.h>
__BEGIN_DECLS
#define FNM_NOMATCH 1
#define FNM_PATHNAME 0x01
#define FNM_PERIOD 0x02
#define FNM_NOESCAPE 0x04
int fnmatch(const char* pattern, const char* string, int flags);
__END_DECLS
#endif