mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
29 lines
289 B
C
29 lines
289 B
C
module std::runtime;
|
|
|
|
struct VirtualAny
|
|
{
|
|
void* ptr;
|
|
typeid type_id;
|
|
}
|
|
|
|
struct VirtualContainer
|
|
{
|
|
void* ptr;
|
|
void* impl_ptr;
|
|
}
|
|
|
|
struct SubArrayContainer
|
|
{
|
|
void* ptr;
|
|
usize len;
|
|
}
|
|
|
|
struct VarArrayHeader
|
|
{
|
|
usize size;
|
|
usize capacity;
|
|
void *allocator;
|
|
|
|
}
|
|
|