summaryrefslogtreecommitdiff
path: root/src/tiblst.h
blob: 593a6454f17f549592b961ccf759d3482d09e769 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/*
 *  libtib - Read, write, and evaluate TI BASIC programs
 *  Copyright (C) 2015-2017 Delwink, LLC
 *
 *  This program is free software: you can redistribute it and/or modify
 *  it under the terms of the GNU Affero General Public License as published by
 *  the Free Software Foundation, version 3 only.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU Affero General Public License for more details.
 *
 *  You should have received a copy of the GNU Affero General Public License
 *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#ifndef DELWINK_TIB_LST_H
#define DELWINK_TIB_LST_H

#include "tibtype.h"

#define tib_foreachlst(L,I) for ((I) = 0; (I) < tib_lst_len (L); ++(I))

struct tib_el
{
	TIB *val;
	struct tib_el *next;
	struct tib_el *prev;
};

struct tib_lst
{
	struct tib_el *beg;
	struct tib_el *end;
};

struct tib_lst *
tib_new_lst(void);

void
tib_free_lst(struct tib_lst *lst);

int
tib_lst_insert(struct tib_lst *lst, TIB *t, int index);

int
tib_lst_push(struct tib_lst *lst, TIB *t);

void
tib_lst_remove(struct tib_lst *lst, int index);

int
tib_lst_len(const struct tib_lst *lst);

TIB *
tib_lst_ref(const struct tib_lst *lst, int index);

#endif