summaryrefslogtreecommitdiff
path: root/tests/headers/fnmatch.c
blob: 563425ccfce4ac64c5a931ee31bca9249fd3ac20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// https://pubs.opengroup.org/onlinepubs/9799919799/basedefs/fmtmsg.h.html

#include "core.h"

#include <fnmatch.h>

TEST(fnmatch_h)
{
	MACRO(FNM_PATHNAME)
	MACRO(FNM_NOESCAPE)
	MACRO(FNM_PERIOD)
	MACRO(FNM_CASEFOLD)
	MACRO(FNM_NOMATCH)
	MACRO(FNM_IGNORECASE)

	FUNCTION(fnmatch, FN(int, const char *, const char *, int))
}