summaryrefslogtreecommitdiff
path: root/pikul.c
diff options
context:
space:
mode:
authorꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id>2021-07-22 17:04:07 +0800
committerꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id>2021-07-22 17:06:42 +0800
commitf686ef14951df5f4c2a82bc6075bfd520e05c3de (patch)
tree84cf5267c0f490c9c0d297c10a11cc774913f4fd /pikul.c
parent628a1be7997f13cf7c44dc3df215557e32d4e74f (diff)
pikul_codes shouldn't be needed
Diffstat (limited to 'pikul.c')
-rw-r--r--pikul.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/pikul.c b/pikul.c
index 0a170b7..27c4cde 100644
--- a/pikul.c
+++ b/pikul.c
@@ -227,21 +227,6 @@ char *pikul_html(const char *origin, const char *destination, double weight,
return html;
}
-char **pikul_codes(const char *origin, const char *destination, double weight)
-{
- char **codes = malloc(sizeof(char *));
- codes[0] = NULL;
- struct pikul_services *services = pikul_services(origin, destination, weight);
- if (!services || !services->length)
- return codes;
- codes = realloc(codes, (services->length + 1) * sizeof(char *));
- size_t i = 0;
- for (i = 0; i < services->length; i++)
- codes[i] = services->list[i]->code;
- codes[i] = NULL;
- return codes;
-}
-
double pikul_cost(const char *origin, const char *destination, double weight, const char *code)
{
struct pikul_services *services = pikul_services(origin, destination, weight);