diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2017-02-04 21:03:59 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2017-02-04 21:05:39 -0500 |
commit | 9f1863d45fe596e258596a4b4cc9a4064bcb11d3 (patch) | |
tree | 4a627b699f52f03eabd145852891c2aef7c5cb76 /bfs.h | |
parent | 538e4b2054e9802ebc860943e0a43baf2ee46741 (diff) | |
download | bfs-9f1863d45fe596e258596a4b4cc9a4064bcb11d3.tar.xz |
Implement -nouser and -nogroup
Diffstat (limited to 'bfs.h')
-rw-r--r-- | bfs.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -288,6 +288,8 @@ bool eval_used(const struct expr *expr, struct eval_state *state); bool eval_gid(const struct expr *expr, struct eval_state *state); bool eval_uid(const struct expr *expr, struct eval_state *state); +bool eval_nogroup(const struct expr *expr, struct eval_state *state); +bool eval_nouser(const struct expr *expr, struct eval_state *state); bool eval_depth(const struct expr *expr, struct eval_state *state); bool eval_empty(const struct expr *expr, struct eval_state *state); |