strongly connected components
[ccc.git] / scc.h
1 #ifndef SCC_H
2 #define SCC_H
3
4 #include "ast.h"
5
6 // Split up the AST in strongly connected components
7 struct ast *ast_scc(struct ast *ast);
8
9 #endif