summaryrefslogtreecommitdiff
path: root/pikul.h
blob: d88d2187933867850a5bf9721203ac82538d66e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#ifndef PIKUL_H
#define PIKUL_H

enum pikul_company {
	PIKUL_ANTERAJA
};

struct pikul_service {
	char *code;
	char *name;
	char *etd;
	double cost;
};

struct pikul_services {
	size_t length;
	struct pikul_service *list[];
};

#ifdef __cplusplus
extern "C" {
#endif

void pikul_init(enum pikul_company company, char *provisions[]);
struct pikul_services *pikul_services(const char *origin, const char *destination, double weight);
void pikul_free_services(struct pikul_services *services);
double pikul_cost(const char *origin, const char *destination, double weight, const char *service);
char *pikul_order(const char *trx_id, const char *service, const char *sender_name,
		const char *sender_phone, const char *origin, const char *sender_address,
		const char *receiver_name, const char *receiver_phone, const char *destination,
		const char *receiver_address, int nitems, char **items[], double value);
void pikul_cleanup();

#ifdef __cplusplus
}
#endif

#endif