From 221ae1727d556de4563999360022596be52da8e1 Mon Sep 17 00:00:00 2001 From: YuQing <384681@qq.com> Date: Wed, 3 Mar 2021 20:57:00 +0800 Subject: [PATCH] add type SFKeyValueArray --- src/sf_types.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/sf_types.h b/src/sf_types.h index 2f86411..997adba 100644 --- a/src/sf_types.h +++ b/src/sf_types.h @@ -182,4 +182,10 @@ typedef struct sf_connection_parameters { struct idempotency_client_channel *channel; } SFConnectionParameters; +typedef struct sf_key_value_array { + key_value_pair_t *elts; + int count; + int alloc; +} SFKeyValueArray; + #endif