blob: 589ac065e6cd94a1cf3a5e5538233472c0a8bff5 (
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
39
40
|
/*
* Copyright (C) 2016 Robin Krahl <robin.krahl@ireas.org>
*
* dbfp.h
*/
#ifndef DBFP_H_
#define DBFP_H_
#include <curl/curl.h>
#include <stddef.h>
enum dbfp_error {
DBFP_ERROR_CURL = -1,
DBFP_ERROR_FORMAT = -2,
DBFP_ERROR_STRUCTURE = -3,
DBFP_ERROR_API = -4,
DBFP_ERROR_PARSE = -5
};
struct dbfp {
char *key;
CURL *curl;
};
struct dbfp_location {
char *name;
char *id;
float lon;
float lat;
};
int dbfp_init(struct dbfp *dbfp, char *key);
void dbfp_close(struct dbfp *dbfp);
void dbfp_location_close(struct dbfp_location *location);
int dbfp_query_location_name(struct dbfp *dbfp, char *input,
size_t *n, struct dbfp_location **locations);
#endif /* DBFP_H_ */
|