preliminary support for namespace mangling (I had this lying around for some weeks)
[cparser] / walk_statements.h
1 #ifndef WALK_STATEMENTS_H
2 #define WALK_STATEMENTS_H
3
4 #include "ast.h"
5
6 typedef void (*statement_callback)(statement_t*, void *env);
7
8 void walk_statements(statement_t*, statement_callback, void *env);
9
10 #endif