Blame


1 c35a7943 2018-07-12 stsp /*
2 c35a7943 2018-07-12 stsp * Copyright (c) 2018 Stefan Sperling <stsp@openbsd.org>
3 c35a7943 2018-07-12 stsp *
4 c35a7943 2018-07-12 stsp * Permission to use, copy, modify, and distribute this software for any
5 c35a7943 2018-07-12 stsp * purpose with or without fee is hereby granted, provided that the above
6 c35a7943 2018-07-12 stsp * copyright notice and this permission notice appear in all copies.
7 c35a7943 2018-07-12 stsp *
8 c35a7943 2018-07-12 stsp * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 c35a7943 2018-07-12 stsp * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 c35a7943 2018-07-12 stsp * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 c35a7943 2018-07-12 stsp * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 c35a7943 2018-07-12 stsp * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 c35a7943 2018-07-12 stsp * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 c35a7943 2018-07-12 stsp * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 c35a7943 2018-07-12 stsp */
16 c35a7943 2018-07-12 stsp
17 c35a7943 2018-07-12 stsp SIMPLEQ_HEAD(got_diffoffset_chunks, got_diffoffset_chunk);
18 c35a7943 2018-07-12 stsp
19 c35a7943 2018-07-12 stsp const struct got_error *got_diffoffset_alloc(struct got_diffoffset_chunks **);
20 c35a7943 2018-07-12 stsp void got_diffoffset_free(struct got_diffoffset_chunks *);
21 c35a7943 2018-07-12 stsp const struct got_error *got_diffoffset_add(struct got_diffoffset_chunks *,
22 c35a7943 2018-07-12 stsp int, int, int, int);
23 c35a7943 2018-07-12 stsp int got_diffoffset_get(struct got_diffoffset_chunks *, int);