GRASS GIS 7 Programmer's Manual
7.9.dev(2021)-e5379bbd7
Main Page
Related Pages
+
Data Structures
Data Structures
Class Hierarchy
+
Data Fields
+
All
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
~
+
Functions
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
~
+
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
Related Functions
+
Files
File List
+
Globals
+
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
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
l
m
n
o
p
r
s
t
u
w
x
y
+
Typedefs
a
b
c
d
e
f
g
h
i
j
k
l
m
o
p
r
s
t
u
v
w
y
z
+
Enumerations
a
c
d
e
h
l
m
n
o
p
r
s
t
v
y
+
Enumerator
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
+
Macros
_
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
•
All
Data Structures
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
create.c
Go to the documentation of this file.
1
#include <stdio.h>
2
#include <stdlib.h>
3
#include <
grass/btree.h
>
4
5
int
btree_create
(
BTREE
* B,
int
(*cmp) (
const
void
*,
const
void
*),
int
incr)
6
{
7
if
(incr <= 0)
8
incr = 1;
9
10
B->
N
= 0;
11
B->
cur
= 0;
12
B->
tlen
= B->
incr
= incr;
13
14
/* must have at least 2 nodes, since node[0] is never used */
15
if
(B->
tlen
== 1)
16
B->
tlen
= 2;
17
18
B->
cmp
= cmp;
19
B->
node
= (
BTREE_NODE
*)
malloc
(B->
tlen
*
sizeof
(
BTREE_NODE
));
20
if
(B->
node
==
NULL
)
21
return
0;
22
return
1;
23
}
BTREE::cur
int cur
Definition:
btree.h:18
btree.h
BTREE_NODE
Definition:
btree.h:4
BTREE::N
int N
Definition:
btree.h:16
BTREE::incr
int incr
Definition:
btree.h:17
NULL
#define NULL
Definition:
ccmath.h:32
malloc
void * malloc(YYSIZE_T)
BTREE
Definition:
btree.h:12
BTREE::cmp
int(* cmp)(const void *, const void *)
Definition:
btree.h:19
BTREE::node
BTREE_NODE * node
Definition:
btree.h:14
BTREE::tlen
int tlen
Definition:
btree.h:15
btree_create
int btree_create(BTREE *B, int(*cmp)(const void *, const void *), int incr)
Definition:
create.c:5
lib
btree
create.c
Generated on Mon May 31 2021 05:21:28 for GRASS GIS 7 Programmer's Manual by
1.8.13