summaryrefslogtreecommitdiff
path: root/ord.c
diff options
context:
space:
mode:
Diffstat (limited to 'ord.c')
-rw-r--r--ord.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/ord.c b/ord.c
new file mode 100644
index 0000000..4122b57
--- /dev/null
+++ b/ord.c
@@ -0,0 +1,10 @@
+#include <stdlib.h>
+#include <stdbool.h>
+#include "icclient/client.h"
+#include "icclient/ord.h"
+
+void icclient_ord_free(struct icclient_ord_order *order)
+{
+ for (size_t i = 0; i < order->nitems; i++)
+ icclient_freeproduct(order->items[i]->product);
+}