]> git.ipfire.org Git - people/ms/libloc.git/blame - src/loc/stringpool.h
Hide all functions that we don't want to make public
[people/ms/libloc.git] / src / loc / stringpool.h
CommitLineData
62b83e6d
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_STRINGPOOL_H
18#define LIBLOC_STRINGPOOL_H
19
30ac38a1
MT
20#ifdef LIBLOC_PRIVATE
21
62b83e6d 22#include <stddef.h>
a5db3e49 23#include <stdio.h>
62b83e6d
MT
24
25#include <loc/libloc.h>
26
27struct loc_stringpool;
0e974d4b
MT
28int loc_stringpool_new(struct loc_ctx* ctx, struct loc_stringpool** pool);
29int loc_stringpool_open(struct loc_ctx* ctx, struct loc_stringpool** pool,
30 FILE* f, size_t length, off_t offset);
31
62b83e6d
MT
32struct loc_stringpool* loc_stringpool_ref(struct loc_stringpool* pool);
33struct loc_stringpool* loc_stringpool_unref(struct loc_stringpool* pool);
34
35const char* loc_stringpool_get(struct loc_stringpool* pool, off_t offset);
2601e83e
MT
36size_t loc_stringpool_get_size(struct loc_stringpool* pool);
37
62b83e6d
MT
38off_t loc_stringpool_add(struct loc_stringpool* pool, const char* string);
39void loc_stringpool_dump(struct loc_stringpool* pool);
40
2601e83e
MT
41size_t loc_stringpool_write(struct loc_stringpool* pool, FILE* f);
42
62b83e6d 43#endif
30ac38a1 44#endif