1 #ifndef LLVM_WRAPPER_H
2 #define LLVM_WRAPPER_H
3 
4 #include <llvm-c/Core.h>
5 
6 #ifdef __cplusplus
7 extern "C" {
8 #endif
9 
10 LLVMModuleRef llvm_parse_bitcode(const unsigned char * bitcode, unsigned bitcode_len);
11 
12 #ifdef __cplusplus
13 }
14 #endif
15 
16 #endif
17