From 8b8fcdd17bf243440f52bd74e447afcface8b107 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: Thu, 26 Sep 2019 11:52:37 +0800 Subject: Fix prefixes --- icclient/product.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'icclient') diff --git a/icclient/product.h b/icclient/product.h index 2ea1f53..12da846 100644 --- a/icclient/product.h +++ b/icclient/product.h @@ -1,24 +1,24 @@ #ifndef ICCLIENT_PRODUCT_H #define ICCLIENT_PRODUCT_H -struct ic_product { +struct icclient_product { char *sku, *description, *comment, *image; double price; }; -struct ic_catalog { +struct icclient_catalog { size_t length; - struct ic_product *products[]; + struct icclient_product *products[]; }; #ifdef __cplusplus extern "C" { #endif - void icclient_product_all(struct ic_catalog **catalogptr + void icclient_product_all(struct icclient_catalog **catalogptr , size_t (*callback)(void *contents, size_t size , size_t nmemb, void *userdata)); - void rtclient_product_freecatalog(struct ic_catalog *catalog); + void icclient_product_freecatalog(struct icclient_catalog *catalog); #ifdef __cplusplus } -- cgit v1.2.3