diff options
author | ꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id> | 2020-06-29 14:48:07 +0800 |
---|---|---|
committer | ꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id> | 2020-06-29 14:48:07 +0800 |
commit | f9ccf11dab8e7ffef363c774c94c660c144f8efb (patch) | |
tree | 371268fbd61a2964188605a0f46d792f0de95ea9 /icclient | |
parent | 3dd44e9bd785d14bd867fa9ca9f17365238578c7 (diff) |
Reorder the order function parameters
Diffstat (limited to 'icclient')
-rw-r--r-- | icclient/client.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/icclient/client.h b/icclient/client.h index 02804bb..f81f567 100644 --- a/icclient/client.h +++ b/icclient/client.h @@ -50,12 +50,12 @@ extern "C" { /*! * \brief For putting an item to a cart. - * \param orderptr A pointer to pointer to the order. * \param sku The SKU of the item to order. * \param catalog A pointer to the catalog from which the item is. + * \param orderptr A pointer to pointer to the order. */ - void icclient_order(struct icclient_ord_order **orderptr, const char *sku, - struct icclient_catalog *catalog); + void icclient_order(const char *sku, const struct icclient_catalog *catalog, + struct icclient_ord_order **orderptr); void icclient_newaccount(size_t (*handler)(void *contents, size_t size, size_t nmemb, void *userdata), struct icclient_user *user, |