summaryrefslogtreecommitdiff
path: root/lib/command_parse.y
diff options
context:
space:
mode:
authorQuentin Young <qlyoung@cumulusnetworks.com>2016-07-21 21:38:03 +0000
committerQuentin Young <qlyoung@cumulusnetworks.com>2016-07-21 21:38:03 +0000
commit18be0e599d1ba666e59a3d027e973eb41798f46f (patch)
tree2d813d4a693a8af73e405aaec147e225c72b61ec /lib/command_parse.y
parent9d0662e009c0cf4532b88c9a1fb0f7c0dc174584 (diff)
lib: Mostly complete matcher
Input matching and completions works. Still some rough edges. Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
Diffstat (limited to 'lib/command_parse.y')
-rw-r--r--lib/command_parse.y4
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/command_parse.y b/lib/command_parse.y
index 80487af7cd..9c1b3fff24 100644
--- a/lib/command_parse.y
+++ b/lib/command_parse.y
@@ -19,9 +19,7 @@ extern void yyerror(const char *);
%}
%code provides {
extern struct
-graph_node *cmd_parse_format(const char *,
- const char *,
- struct graph_node *);
+graph_node *cmd_parse_format(const char *, const char *, struct graph_node *);
extern void
set_buffer_string(const char *);
}