diff options
Diffstat (limited to 'src/expr.h')
-rw-r--r-- | src/expr.h | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -143,6 +143,16 @@ struct bfs_expr { }; }; + /** String comparisons. */ + struct { + /** String pattern. */ + const char *pattern; + /** fnmatch() flags. */ + int fnm_flags; + /** Whether strcmp() can be used instead of fnmatch(). */ + bool literal; + }; + /** Printing actions. */ struct { /** The output stream. */ |