blob: 09559c9671a29e0adfd02a8c1e17178e2ff692d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#include <fnmatch.h>
#include "_assert.h"
int fnmatch(const char * pattern, const char * string, int flags)
{
(void)pattern;
(void)string;
(void)flags;
ASSERT_NONNULL(pattern);
ASSERT_NONNULL(string);
/* __ASSERT_FLAGS(flags, FNM_PATHNAME | FNM_NOESCAPE | FNM_PERIOD); */
/*
const char *ppos = pattern;
const char *spos = string;
*/
return 0;
}
/*
POSIX(2)
*/
|