diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2024-05-27 16:56:43 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2024-05-28 12:54:50 -0400 |
commit | fa24499735018e2cb81a6a76aa8b5e72695fb8ad (patch) | |
tree | f71f584533af2e2c5a3065b5fba058bc8d1ebc91 /src/xregex.h | |
parent | 3043922abacf5d9e7bdfc7cfc48d9d1652927c29 (diff) | |
download | bfs-fa24499735018e2cb81a6a76aa8b5e72695fb8ad.tar.xz |
Implement the remaining regex types
Closes: https://github.com/tavianator/bfs/issues/21
Diffstat (limited to 'src/xregex.h')
-rw-r--r-- | src/xregex.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/xregex.h b/src/xregex.h index 998a2b0..750db24 100644 --- a/src/xregex.h +++ b/src/xregex.h @@ -15,8 +15,12 @@ struct bfs_regex; enum bfs_regex_type { BFS_REGEX_POSIX_BASIC, BFS_REGEX_POSIX_EXTENDED, + BFS_REGEX_AWK, + BFS_REGEX_GNU_AWK, BFS_REGEX_EMACS, BFS_REGEX_GREP, + BFS_REGEX_EGREP, + BFS_REGEX_GNU_FIND, }; /** |