Skip to content

Commit

Permalink
options/posix: Define FNM_EXTMATCH
Browse files Browse the repository at this point in the history
  • Loading branch information
Dennisbonke committed Oct 30, 2023
1 parent 123f530 commit b2caacd
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions options/posix/include/fnmatch.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,9 @@ extern "C" {
#define FNM_PERIOD 0x4

// GNU extensions for fnmatch() flags.
#define FNM_LEADING_DIR 0x8
#define FNM_CASEFOLD 0x10
#define FNM_LEADING_DIR 0x8
#define FNM_CASEFOLD 0x10
#define FNM_EXTMATCH 0x20

// fnmatch() return values.
#define FNM_NOMATCH 1
Expand Down

0 comments on commit b2caacd

Please sign in to comment.