Dillo
v3.2.0-10-gc247d95a
Toggle main menu visibility
Main Page
Related Pages
Namespaces
Namespace List
Namespace Members
All
a
b
c
d
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
z
Functions
a
b
c
d
f
g
i
k
m
n
p
r
s
t
u
w
Variables
Typedefs
Enumerations
Enumerator
b
c
d
f
h
i
l
m
n
o
p
r
s
t
v
w
z
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
Enumerator
a
b
c
d
e
g
i
l
m
n
o
p
q
r
s
t
u
w
Related Symbols
Files
File List
File Members
All
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
Functions
a
b
c
d
e
f
g
h
i
k
l
m
n
p
q
r
s
t
u
w
Variables
a
b
c
d
e
f
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
Typedefs
a
b
c
d
m
n
t
u
v
Enumerations
a
c
d
f
i
k
n
o
p
u
x
Enumerator
a
b
c
d
f
g
h
i
k
m
n
p
q
r
s
t
u
x
Macros
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
Loading...
Searching...
No Matches
list.h
Go to the documentation of this file.
1
8
#ifndef __LIST_H__
9
#define __LIST_H__
10
16
#define a_List_resize(list,num_items,alloc_step) \
17
if (!list) { \
18
list = dMalloc(alloc_step * sizeof(*list)); \
19
} \
20
if (num_items >= alloc_step){ \
21
while ( num_items >= alloc_step ) \
22
alloc_step <<= 1; \
23
list = dRealloc(list, alloc_step * sizeof(*list)); \
24
}
16
#define a_List_resize(list,num_items,alloc_step) \
…
25
26
30
#define a_List_add(list,num_items,alloc_step) \
31
a_List_resize(list,num_items,alloc_step)
30
#define a_List_add(list,num_items,alloc_step) \
…
32
33
38
#define a_List_remove(list, item, num_items) \
39
if (list && item < num_items) { \
40
list[item] = list[--num_items]; \
41
}
38
#define a_List_remove(list, item, num_items) \
…
42
43
44
#endif
/* __LIST_H__ */
src
list.h
Generated on Sun Mar 30 2025 01:42:34 for Dillo by
1.9.8