diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2016-01-30 14:00:02 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2016-01-30 14:00:02 -0500 |
commit | 132dc9eaf7d6aa9e7892d9b55889f762f1140f4d (patch) | |
tree | 3c8dd890176873edcbc4a06852b4a64690c53488 /bfs.h | |
parent | 3f9f913f5302b71ef57467798f62dd3e83b217bc (diff) | |
download | bfs-132dc9eaf7d6aa9e7892d9b55889f762f1140f4d.tar.xz |
Implement -empty.
Diffstat (limited to 'bfs.h')
-rw-r--r-- | bfs.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -97,6 +97,7 @@ void free_cmdline(cmdline *cl); // Predicate evaluation functions bool eval_access(const expression *expr, eval_state *state); bool eval_delete(const expression *expr, eval_state *state); +bool eval_empty(const expression *expr, eval_state *state); bool eval_false(const expression *expr, eval_state *state); bool eval_hidden(const expression *expr, eval_state *state); bool eval_name(const expression *expr, eval_state *state); |