summaryrefslogtreecommitdiff
path: root/ord.c
blob: 4122b578a29fbf4681d51506504cf7833118402f (plain)
1
2
3
4
5
6
7
8
9
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);
}