Files
ivy/lang/ast/iterate.h

12 lines
246 B
C
Raw Normal View History

#ifndef _AST_ITERATE_H_
#define _AST_ITERATE_H_
struct ivy_ast_node_iterator;
struct ivy_ast_node;
extern void ast_node_iterator_enqueue_node(
2025-04-14 09:44:37 +01:00
struct ivy_ast_node_iterator *it, struct ivy_ast_node *parent,
struct ivy_ast_node *node);
2025-04-14 09:44:37 +01:00
#endif