24 lines
264 B
C++
24 lines
264 B
C++
#include <cstdarg>
|
|
#include <cstdint>
|
|
#include <cstdlib>
|
|
#include <ostream>
|
|
#include <new>
|
|
|
|
enum class Bar {
|
|
BarSome,
|
|
BarThing,
|
|
};
|
|
|
|
template<typename T>
|
|
struct Foo {
|
|
T a;
|
|
};
|
|
|
|
using Boo = Foo<uint8_t>;
|
|
|
|
extern "C" {
|
|
|
|
void root(Boo x, Bar y);
|
|
|
|
} // extern "C"
|