mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-10-12 08:15:06 +02:00
23 lines
260 B
C++
23 lines
260 B
C++
#include <cstdarg>
|
|
#include <cstdint>
|
|
#include <cstdlib>
|
|
#include <ostream>
|
|
#include <new>
|
|
|
|
struct A;
|
|
|
|
struct B;
|
|
|
|
template<typename T>
|
|
struct List {
|
|
T *members;
|
|
uintptr_t count;
|
|
};
|
|
|
|
extern "C" {
|
|
|
|
void foo(List<A> a);
|
|
|
|
void bar(List<B> b);
|
|
|
|
} // extern "C"
|