ax-libc 0.5.13

ArceOS user program library for C apps
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <fnmatch.h>
#include <stdio.h>

#define END         0
#define UNMATCHABLE -2
#define BRACKET     -3
#define QUESTION    -4
#define STAR        -5

// TODO
int fnmatch(const char *pat, const char *str, int flags)
{
    unimplemented();
    return 0;
}