diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2016-02-12 15:19:09 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2016-02-12 15:19:09 -0500 |
commit | 3d167f2a35fc94ed7521909b8c7ef126aaa4bed6 (patch) | |
tree | 8b14a84684ef6f1b19ea872dafe078e3b7d5a26f /bfs.h | |
parent | 25648b2999b918dd1ebd9faa1f8dbff705a7a46c (diff) | |
download | bfs-3d167f2a35fc94ed7521909b8c7ef126aaa4bed6.tar.xz |
Use 'cmdline' instead of 'cl'.
Diffstat (limited to 'bfs.h')
-rw-r--r-- | bfs.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -138,12 +138,12 @@ struct cmdline *parse_cmdline(int argc, char *argv[]); /** * Evaluate the command line. */ -int eval_cmdline(const struct cmdline *cl); +int eval_cmdline(const struct cmdline *cmdline); /** * Free the parsed command line. */ -void free_cmdline(struct cmdline *cl); +void free_cmdline(struct cmdline *cmdline); // Predicate evaluation functions bool eval_true(const struct expr *expr, struct eval_state *state); |