parsed -> parse
[protos/libecoli.git] / lib / ecoli_node_dynamic.h
index fa3db11..4f2535e 100644 (file)
@@ -1,17 +1,17 @@
 /* SPDX-License-Identifier: BSD-3-Clause
- * Copyright (c) 2017, Olivier MATZ <zer0@droids-corp.org>
+ * Copyright 2017, Olivier MATZ <zer0@droids-corp.org>
  */
 
 #ifndef ECOLI_NODE_DYNAMIC_
 #define ECOLI_NODE_DYNAMIC_
 
 struct ec_node;
-struct ec_parsed;
+struct ec_parse;
 
 /* callback invoked by parse() or complete() to build the dynamic node
  * the behavior of the node can depend on what is already parsed */
 typedef struct ec_node *(*ec_node_dynamic_build_t)(
-       struct ec_parsed *state, void *opaque);
+       struct ec_parse *state, void *opaque);
 
 struct ec_node *ec_node_dynamic(const char *id, ec_node_dynamic_build_t build,
                                void *opaque);