]> git.ipfire.org Git - location/libloc.git/blame - src/libloc/country-list.h
importer: Drop EDROP as it has been merged into DROP
[location/libloc.git] / src / libloc / country-list.h
CommitLineData
e646a8f3
MT
1/*
2 libloc - A library to determine the location of someone on the Internet
3
4 Copyright (C) 2017 IPFire Development Team <info@ipfire.org>
5
6 This library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
10
11 This library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
15*/
16
17#ifndef LIBLOC_COUNTRY_LIST_H
18#define LIBLOC_COUNTRY_LIST_H
19
20#include <stdlib.h>
21
c12a1385
MT
22#include <libloc/libloc.h>
23#include <libloc/country.h>
e646a8f3
MT
24
25struct loc_country_list;
26
27int loc_country_list_new(struct loc_ctx* ctx, struct loc_country_list** list);
28struct loc_country_list* loc_country_list_ref(struct loc_country_list* list);
29struct loc_country_list* loc_country_list_unref(struct loc_country_list* list);
30
31size_t loc_country_list_size(struct loc_country_list* list);
32int loc_country_list_empty(struct loc_country_list* list);
33void loc_country_list_clear(struct loc_country_list* list);
34
35struct loc_country* loc_country_list_get(struct loc_country_list* list, size_t index);
36int loc_country_list_append(struct loc_country_list* list, struct loc_country* country);
37
38int loc_country_list_contains(
39 struct loc_country_list* list, struct loc_country* country);
40int loc_country_list_contains_code(
41 struct loc_country_list* list, const char* code);
42
3df5f70a
MT
43void loc_country_list_sort(struct loc_country_list* list);
44
e646a8f3 45#endif