CBMC
lispirep.h
Go to the documentation of this file.
1 /*******************************************************************\
2 
3 Module:
4 
5 Author: Daniel Kroening, kroening@kroening.com
6 
7 \*******************************************************************/
8 
9 
10 #ifndef CPROVER_UTIL_LISPIREP_H
11 #define CPROVER_UTIL_LISPIREP_H
12 
13 class irept;
14 class lispexprt;
15 
16 void lisp2irep(const lispexprt &src, irept &dest);
17 void irep2lisp(const irept &src, lispexprt &dest);
18 
19 #endif // CPROVER_UTIL_LISPIREP_H
There are a large number of kinds of tree structured or tree-like data in CPROVER.
Definition: irep.h:360
void lisp2irep(const lispexprt &src, irept &dest)
Definition: lispirep.cpp:15
void irep2lisp(const irept &src, lispexprt &dest)
Definition: lispirep.cpp:43