42 lines
528 B
C++
42 lines
528 B
C++
#if 0
|
|
''' '
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
template <typename T>
|
|
using Box = T*;
|
|
#endif
|
|
|
|
#if 0
|
|
' '''
|
|
#endif
|
|
|
|
|
|
#include <cstdarg>
|
|
#include <cstdint>
|
|
#include <cstdlib>
|
|
#include <ostream>
|
|
#include <new>
|
|
|
|
template<typename T = void>
|
|
struct NotReprC;
|
|
|
|
template<typename T = void>
|
|
struct Option;
|
|
|
|
using Foo = NotReprC<Box<int32_t>>;
|
|
|
|
struct MyStruct {
|
|
Box<int32_t> number;
|
|
};
|
|
|
|
extern "C" {
|
|
|
|
void root(const Foo *a, const MyStruct *with_box);
|
|
|
|
void drop_box(Box<int32_t> x);
|
|
|
|
void drop_box_opt(Option<Box<int32_t>> x);
|
|
|
|
} // extern "C"
|