Files
cbindgen/tests/expectations/std_lib.cpp
T
2017-11-18 14:40:42 -06:00

20 lines
299 B
C++

#include <cstdint>
#include <cstdlib>
template<typename T>
struct Option;
template<typename T, typename E>
struct Result;
struct String;
template<typename T>
struct Vec;
extern "C" {
void root(const Vec<String> *a, const Option<int32_t> *b, const Result<int32_t, String> *c);
} // extern "C"