From 63b109ca1c1c54319d164ddcfa5760aa66558ccd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=A6=8C=20=EA=A6=AB=EA=A6=B6=20=EA=A6=8F=EA=A7=80?= =?UTF-8?q?=EA=A6=A6=EA=A6=BF=20=EA=A6=A7=20=EA=A6=AE=20=EA=A6=91=20?= =?UTF-8?q?=EA=A6=A9=20=EA=A6=AD=EA=A7=80?= Date: Sat, 20 Jun 2020 11:41:01 +0800 Subject: Move catalog freeing implementation to catalog's own implementation --- icclient/catalog.h | 10 ++++++++++ icclient/client.h | 1 - 2 files changed, 10 insertions(+), 1 deletion(-) (limited to 'icclient') diff --git a/icclient/catalog.h b/icclient/catalog.h index b38434b..ee65c1e 100644 --- a/icclient/catalog.h +++ b/icclient/catalog.h @@ -6,4 +6,14 @@ struct icclient_catalog { struct icclient_product *products[]; }; +#ifdef __cplusplus +extern "C" { +#endif + + void icclient_catalog_free(struct icclient_catalog *catalog); + +#ifdef __cplusplus +} +#endif + #endif // ICCLIENT_CATALOG_H diff --git a/icclient/client.h b/icclient/client.h index 4a9ac6a..02804bb 100644 --- a/icclient/client.h +++ b/icclient/client.h @@ -73,7 +73,6 @@ extern "C" { size_t (*handler)(void *contents, size_t size, size_t nmemb, void *userdata), void **dataptr); - void icclient_freecatalog(struct icclient_catalog *catalog); void icclient_cleanup(); #ifdef __cplusplus -- cgit v1.2.3