]> git.ipfire.org Git - people/ms/libloc.git/blame - src/libloc/as-list.h
lua: Create Country objects
[people/ms/libloc.git] / src / libloc / as-list.h
CommitLineData
84a2f0c2
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_AS_LIST_H
18#define LIBLOC_AS_LIST_H
19
c12a1385
MT
20#include <libloc/as.h>
21#include <libloc/libloc.h>
84a2f0c2
MT
22
23struct loc_as_list;
24
25int loc_as_list_new(struct loc_ctx* ctx, struct loc_as_list** list);
26struct loc_as_list* loc_as_list_ref(struct loc_as_list* list);
27struct loc_as_list* loc_as_list_unref(struct loc_as_list* list);
28
29size_t loc_as_list_size(struct loc_as_list* list);
30int loc_as_list_empty(struct loc_as_list* list);
31void loc_as_list_clear(struct loc_as_list* list);
32
33struct loc_as* loc_as_list_get(struct loc_as_list* list, size_t index);
34int loc_as_list_append(struct loc_as_list* list, struct loc_as* as);
35
36int loc_as_list_contains(
37 struct loc_as_list* list, struct loc_as* as);
38int loc_as_list_contains_number(
39 struct loc_as_list* list, uint32_t number);
40
233311e8
MT
41void loc_as_list_sort(struct loc_as_list* list);
42
84a2f0c2 43#endif