diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2016-05-22 13:24:48 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2016-05-22 13:24:48 -0400 |
commit | 17925ac0b62771ec91a08447116514709db72af5 (patch) | |
tree | bd920410be104dccc47bc26524ad8a4c3c2741f5 /bfs.h | |
parent | 8ea44cab76a20f1c5ac473b1651611bea0ee9e6b (diff) | |
download | bfs-17925ac0b62771ec91a08447116514709db72af5.tar.xz |
Use argc/argv naming consistently.
Diffstat (limited to 'bfs.h')
-rw-r--r-- | bfs.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -167,10 +167,10 @@ struct expr { /** Whether this expression has no side effects. */ bool pure; - /** The command line arguments resulting in this expression. */ - char **args; - /** The number of command line arguments. */ - size_t nargs; + /** The number of command line arguments for this expression. */ + size_t argc; + /** The command line arguments comprising this expression. */ + char **argv; /** The optional comparison flag. */ enum cmpflag cmpflag; |