cprover
dump_c.h
Go to the documentation of this file.
1 /*******************************************************************\
2 
3 Module: Dump C from Goto Program
4 
5 Author: Daniel Kroening, kroening@kroening.com
6 
7 \*******************************************************************/
8 
11 
12 #ifndef CPROVER_GOTO_INSTRUMENT_DUMP_C_H
13 #define CPROVER_GOTO_INSTRUMENT_DUMP_C_H
14 
16 
17 void dump_c(
18  const goto_functionst &src,
19  const bool use_system_headers,
20  const bool use_all_headers,
21  const namespacet &ns,
22  std::ostream &out);
23 
24 void dump_cpp(
25  const goto_functionst &src,
26  const bool use_system_headers,
27  const bool use_all_headers,
28  const namespacet &ns,
29  std::ostream &out);
30 
31 #endif // CPROVER_GOTO_INSTRUMENT_DUMP_C_H
Goto Programs with Functions.
void dump_cpp(const goto_functionst &src, const bool use_system_headers, const bool use_all_headers, const namespacet &ns, std::ostream &out)
Definition: dump_c.cpp:1656
TO_BE_DOCUMENTED.
Definition: namespace.h:62
void dump_c(const goto_functionst &src, const bool use_system_headers, const bool use_all_headers, const namespacet &ns, std::ostream &out)
Definition: dump_c.cpp:1644