summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--icclient/product.h2
-rw-r--r--product.c5
2 files changed, 2 insertions, 5 deletions
diff --git a/icclient/product.h b/icclient/product.h
index 6b2b890..0b0e509 100644
--- a/icclient/product.h
+++ b/icclient/product.h
@@ -15,7 +15,7 @@ struct icclient_catalog {
extern "C" {
#endif
- void icclient_product_freecatalog(struct icclient_catalog *catalog);
+ void icclient_catalog_free(struct icclient_catalog *catalog);
#ifdef __cplusplus
}
diff --git a/product.c b/product.c
index 6c30834..33286cd 100644
--- a/product.c
+++ b/product.c
@@ -1,10 +1,7 @@
#include <stdlib.h>
-#include "request.h"
#include "icclient/product.h"
-typedef struct icclient_catalog icclient_catalog;
-
-void icclient_product_freecatalog(icclient_catalog *catalog)
+void icclient_catalog_free(struct icclient_catalog *catalog)
{
for (size_t i = 0; i < catalog->length; i++) {
struct icclient_product *product = catalog->products[i];