From 17925ac0b62771ec91a08447116514709db72af5 Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Sun, 22 May 2016 13:24:48 -0400 Subject: Use argc/argv naming consistently. --- bfs.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'bfs.h') diff --git a/bfs.h b/bfs.h index 42bbdd4..beb5d82 100644 --- a/bfs.h +++ b/bfs.h @@ -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; -- cgit v1.2.3