CBMC
linking.h
Go to the documentation of this file.
1 /*******************************************************************\
2 
3 Module: ANSI-C Linking
4 
5 Author: Daniel Kroening, kroening@kroening.com
6 
7 \*******************************************************************/
8 
11 
12 #ifndef CPROVER_LINKING_LINKING_H
13 #define CPROVER_LINKING_LINKING_H
14 
15 class message_handlert;
16 class symbol_tablet;
17 
21 bool linking(
22  symbol_tablet &dest_symbol_table,
23  const symbol_tablet &new_symbol_table,
24  message_handlert &message_handler);
25 
26 #endif // CPROVER_LINKING_LINKING_H
symbol_tablet
The symbol table.
Definition: symbol_table.h:13
linking
bool linking(symbol_tablet &dest_symbol_table, const symbol_tablet &new_symbol_table, message_handlert &message_handler)
Merges the symbol table new_symbol_table into dest_symbol_table, renaming symbols from new_symbol_tab...
Definition: linking.cpp:1475
message_handlert
Definition: message.h:27