Add support for L4Re Virtio Sockets
[src/app-framework-binder.git] / src / globmatch.h
1 /*
2  * Copyright (C) 2018, 2019 "IoT.bzh"
3  * Author: José Bollo <jose.bollo@iot.bzh>
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *   http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17
18 #pragma once
19
20 #define GLOB    '*'
21
22 extern unsigned globmatch(const char *pat, const char *str);
23 extern unsigned globmatchi(const char *pat, const char *str);
24
25 #if WITH_FNMATCH
26
27 #include <fnmatch.h>
28
29 #else
30
31 #define FNM_PATHNAME    (1 << 0)        /* No wildcard can ever match `/'.  */
32 #define FNM_NOESCAPE    (1 << 1)        /* Backslashes don't quote special chars.  */
33 #define FNM_PERIOD      (1 << 2)        /* Leading `.' is matched only explicitly.  */
34 #define FNM_FILE_NAME   FNM_PATHNAME    /* Preferred GNU name.  */
35 #define FNM_LEADING_DIR (1 << 3)        /* Ignore `/...' after a match.  */
36 #define FNM_CASEFOLD    (1 << 4)        /* Compare without regard to case.  */
37 #define FNM_EXTMATCH    (1 << 5)        /* Use ksh-like extended matching. */
38 #define FNM_NOMATCH     1
39
40 extern int fnmatch(const char *pattern, const char *string, int flags);
41
42 #endif