0f907c19317fd6e4b8a1f32b7e76e0d95cacb45c
[oota-llvm.git] / include / llvm / Assembly / CWriter.h
1 //===-- llvm/Assembly/CWriter.h - C Printer for LLVM programs ---*- C++ -*-===//
2 //
3 // This functionality is implemented by the lib/CWriter library.  This library
4 // is used to print C language files to an iostream.
5 //
6 //===----------------------------------------------------------------------===//
7
8 #ifndef LLVM_ASSEMBLY_CWRITER_H
9 #define LLVM_ASSEMBLY_CWRITER_H
10
11 #include <iosfwd>
12 class Pass;
13 Pass *createWriteToCPass(std::ostream &o);
14
15 #endif