GRASS GIS 8 Programmer's Manual
8.5.0dev(2025)-c829ef14a3
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
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
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
Enumerations
a
c
d
e
h
i
j
l
m
n
o
p
r
s
t
v
y
Enumerator
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
w
y
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
linkm/next.c
Go to the documentation of this file.
1
/*
2
** Written by David Gerdes US Army Construction Engineering Research Lab
3
** April 1992
4
** Copyright 1992 USA-CERL All rights reserved.
5
**
6
*/
7
8
#include <
grass/linkm.h
>
9
10
VOID_T
*
link__get_next
(
VOID_T
*
list
)
11
{
12
VOID_T
**tmp;
13
14
tmp = (
VOID_T
**)
list
;
15
16
return
*tmp;
17
}
18
19
void
link__set_next
(
VOID_T
*a,
VOID_T
*
b
)
20
{
21
VOID_T
**tmp;
22
23
tmp = (
VOID_T
**)a;
24
*tmp =
b
;
25
}
link__set_next
void link__set_next(VOID_T *a, VOID_T *b)
Definition:
linkm/next.c:19
link__get_next
VOID_T * link__get_next(VOID_T *list)
Definition:
linkm/next.c:10
linkm.h
VOID_T
#define VOID_T
Definition:
linkm.h:8
b
double b
Definition:
r_raster.c:39
list
Definition:
manage.h:4
lib
linkm
next.c
Generated on Wed Mar 19 2025 07:38:28 for GRASS GIS 8 Programmer's Manual by
1.9.1