From 49eacf29d29fa704b2feda879978ae64a825358c Mon Sep 17 00:00:00 2001 From: Ismael Luceno Date: Thu, 25 Jul 2019 23:50:48 +0200 Subject: glob: implement GLOB_TILDE and GLOB_TILDE_CHECK --- include/glob.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'include') 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 -- cgit v1.2.1