c2rust-ast-exporter 0.20.0

Clang AST extraction API for use in the C2Rust project
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//
//  AstExporter.hpp
//
//  Created by Alec Theriault on 10/4/18.
//

#ifndef AstExporter_hpp
#define AstExporter_hpp

#include <string>
#include <unordered_map>
#include <vector>

using Outputs = std::unordered_map<std::string, std::vector<uint8_t>>;

Outputs process(int argc, const char *argv[], int *result);

#endif /* AstExporter_hpp */