add type void_array_t

pull/37/merge
YuQing 2021-08-20 11:01:50 +08:00
parent 45da326ce2
commit e1ef38d6a4
1 changed files with 8 additions and 2 deletions

View File

@ -245,16 +245,22 @@ typedef struct
typedef struct
{
int32_t *values;
int32_t *elts;
int count;
} int32_array_t;
typedef struct
{
int64_t *values;
int64_t *elts;
int count;
} int64_array_t;
typedef struct
{
void *elts;
int count;
} void_array_t;
typedef struct
{
pthread_mutex_t lock;