math: handle bitwise OR
[smatch.git] / ast-inspect.h
blob6e15c91b13307edb3eb840b6d718ad208a96bdec
2 #ifndef _AST_INSPECT_H_
3 #define _AST_INSPECT_H_
5 #include "ast-model.h"
7 void inspect_symbol(AstNode *node);
8 void inspect_symbol_list(AstNode *node);
10 void inspect_statement(AstNode *node);
11 void inspect_statement_list(AstNode *node);
13 void inspect_expression(AstNode *node);
14 void inspect_expression_list(AstNode *node);
17 #endif