cprover
Loading...
Searching...
No Matches
linking.h
Go to the documentation of this file.
1/*******************************************************************\
2
3Module: ANSI-C Linking
4
5Author: Daniel Kroening, kroening@kroening.com
6
7\*******************************************************************/
8
11
12#ifndef CPROVER_LINKING_LINKING_H
13#define CPROVER_LINKING_LINKING_H
14
16class symbol_tablet;
17
21bool 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
The symbol table.
Definition: symbol_table.h:14
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:1470