diff options
author | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2022-09-29 09:45:45 +0800 |
---|---|---|
committer | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2022-09-29 09:45:45 +0800 |
commit | 5b2d7b0e4a49cc46a31ba12215fcb2a1691a49fe (patch) | |
tree | 1e2633846b159ee1816d95968b633f18cc37d8fe | |
parent | 425fcf9ada0b29357af74b8308929f68076ac720 (diff) |
Change the weight to long grams
-rw-r--r-- | pikul.c | 4 | ||||
-rw-r--r-- | pikul.h | 2 |
2 files changed, 3 insertions, 3 deletions
@@ -292,7 +292,7 @@ static inline long crop_limit(size_t len, char *offset) return strtol(str, NULL, 10); } -char *pikul_shopify(char *origins[], char *destinations[], double weight) +const char *pikul_shopify(char *origins[], char *destinations[], long grams) { struct pikul_service **services[PIKUL_END]; for (enum pikul_company company = PIKUL; company < PIKUL_END; @@ -302,7 +302,7 @@ char *pikul_shopify(char *origins[], char *destinations[], double weight) continue; } services[company] = pikul_services(company, origins[company], - destinations[company], (double)(weight / 1000)); + destinations[company], (double)(grams / 1000)); } static const char *prefix = "{\"rates\":["; const size_t prefix_len = strlen(prefix); @@ -25,7 +25,7 @@ void pikul_free_services(struct pikul_service **services); char *pikul_html(char *origins[], char *destinations[], double weight, const char *widget, const char *extra, const char *name, const char *value, char *code_prefixes[], char *name_prefixes[]); -char *pikul_shopify(char *origins[], char *destinations[], double weight); +const char *pikul_shopify(char *origins[], char *destinations[], long grams); double pikul_cost(enum pikul_company company, const char *service, const char *origin, const char *destination, double weight); char *pikul_order(enum pikul_company company, const char *order_number, const char *service, |