Added LLVM copyright header (for lack of a better term).
[oota-llvm.git] / include / llvm / Assembly / CWriter.h
1 //===-- llvm/Assembly/CWriter.h - C Printer for LLVM programs ---*- C++ -*-===//
2 // 
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by the LLVM research group and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
7 // 
8 //===----------------------------------------------------------------------===//
9 //
10 // This functionality is implemented by the lib/CWriter library.  This library
11 // is used to print C language files to an iostream.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #ifndef LLVM_ASSEMBLY_CWRITER_H
16 #define LLVM_ASSEMBLY_CWRITER_H
17
18 #include <iosfwd>
19 class Pass;
20 Pass *createWriteToCPass(std::ostream &o);
21
22 #endif