|
ReactOS 0.4.16-dev-1946-g52006dd
|
#include <schily/fnmatch.h>

Go to the source code of this file.
Macros | |
| #define | EXCLUDE 0 /* Exclude file completely */ |
| #define | I_HIDE 1 /* ISO9660/Rock Ridge hide */ |
| #define | J_HIDE 2 /* Joliet hide */ |
| #define | U_HIDE 3 /* UDF hide */ |
| #define | H_HIDE 4 /* ISO9660 hidden bit set */ |
| #define | MAX_MAT 5 |
| #define | matches(FN) gen_matches((FN), EXCLUDE) |
| #define | i_matches(FN) gen_matches((FN), I_HIDE) |
| #define | i_ishidden() gen_ishidden(I_HIDE) |
| #define | j_matches(FN) gen_matches((FN), J_HIDE) |
| #define | j_ishidden() gen_ishidden(J_HIDE) |
| #define | u_matches(FN) gen_matches((FN), U_HIDE) |
| #define | u_ishidden() gen_ishidden(U_HIDE) |
| #define | h_matches(FN) gen_matches((FN), H_HIDE) |
| #define | h_ishidden() gen_ishidden(H_HIDE) |
Functions | |
| int gen_add_match | __PR ((char *fn, int n)) |
| int add_match | __PR ((char *fn)) |
| int gen_ishidden | __PR ((int n)) |
Variables | |
| int | match_igncase |
| #define h_ishidden | ( | ) | gen_ishidden(H_HIDE) |
| #define h_matches | ( | FN | ) | gen_matches((FN), H_HIDE) |
| #define i_ishidden | ( | ) | gen_ishidden(I_HIDE) |
| #define i_matches | ( | FN | ) | gen_matches((FN), I_HIDE) |
| #define j_ishidden | ( | ) | gen_ishidden(J_HIDE) |
| #define j_matches | ( | FN | ) | gen_matches((FN), J_HIDE) |
| #define matches | ( | FN | ) | gen_matches((FN), EXCLUDE) |
| #define u_ishidden | ( | ) | gen_ishidden(U_HIDE) |
| #define u_matches | ( | FN | ) | gen_matches((FN), U_HIDE) |
| int gen_ishidden __PR | ( | (int n) | ) |
|
extern |
Definition at line 231 of file mkisofs.c.
Referenced by gen_matches().