]> git.ipfire.org Git - people/ms/libloc.git/blame - src/as.h
database: Move string pool to the end of the file again
[people/ms/libloc.git] / src / as.h
CommitLineData
a5db3e49
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_H
18#define LIBLOC_AS_H
19
20#include <stdint.h>
21
22#include <loc/libloc.h>
23#include <loc/format.h>
24
25#include "stringpool.h"
26
27struct loc_as;
28int loc_as_new(struct loc_ctx* ctx, struct loc_stringpool* pool, struct loc_as** as, uint32_t number);
29struct loc_as* loc_as_ref(struct loc_as* as);
30struct loc_as* loc_as_unref(struct loc_as* as);
31
32uint32_t loc_as_get_number(struct loc_as* as);
33
34const char* loc_as_get_name(struct loc_as* as);
35int loc_as_set_name(struct loc_as* as, const char* name);
36
37int loc_as_cmp(struct loc_as* as1, struct loc_as* as2);
38
39int loc_as_new_from_database_v0(struct loc_ctx* ctx, struct loc_stringpool* pool,
40 struct loc_as** as, const struct loc_database_as_v0* dbobj);
41int loc_as_to_database_v0(struct loc_as* as, struct loc_database_as_v0* dbobj);
42
43#endif