add types int32_array_t and int64_array_t

pull/37/merge
YuQing 2021-08-19 19:28:15 +08:00
parent ebe7d87ca4
commit 45da326ce2
1 changed files with 12 additions and 0 deletions

View File

@ -243,6 +243,18 @@ typedef struct
int count;
} key_value_array_t;
typedef struct
{
int32_t *values;
int count;
} int32_array_t;
typedef struct
{
int64_t *values;
int count;
} int64_array_t;
typedef struct
{
pthread_mutex_t lock;