diff options
author | Ismael Luceno <ismael@iodev.co.uk> | 2019-07-25 23:50:48 +0200 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2019-08-06 14:03:31 -0400 |
commit | 49eacf29d29fa704b2feda879978ae64a825358c (patch) | |
tree | 9197460fce02c8e15a59f65fa60ecd7098db2cb0 /include | |
parent | f522de81ac88dddb58266c15bcfaa044c4065e19 (diff) | |
download | musl-49eacf29d29fa704b2feda879978ae64a825358c.tar.gz musl-49eacf29d29fa704b2feda879978ae64a825358c.tar.bz2 musl-49eacf29d29fa704b2feda879978ae64a825358c.tar.xz musl-49eacf29d29fa704b2feda879978ae64a825358c.zip |
glob: implement GLOB_TILDE and GLOB_TILDE_CHECK
Diffstat (limited to 'include')
-rw-r--r-- | include/glob.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/glob.h b/include/glob.h index 76f6c1c6..4a562a20 100644 --- a/include/glob.h +++ b/include/glob.h @@ -31,6 +31,9 @@ void globfree(glob_t *); #define GLOB_NOESCAPE 0x40 #define GLOB_PERIOD 0x80 +#define GLOB_TILDE 0x1000 +#define GLOB_TILDE_CHECK 0x4000 + #define GLOB_NOSPACE 1 #define GLOB_ABORTED 2 #define GLOB_NOMATCH 3 |