GRASS GIS 8 Programmer's Manual 8.4.1(2025)-45ca3179ab
Loading...
Searching...
No Matches
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
11{
12 VOID_T **tmp;
13
14 tmp = (VOID_T **)list;
15
16 return *tmp;
17}
18
20{
21 VOID_T **tmp;
22
23 tmp = (VOID_T **)a;
24 *tmp = b;
25}
double b
VOID_T * link__get_next(VOID_T *list)
Definition linkm/next.c:10
void link__set_next(VOID_T *a, VOID_T *b)
Definition linkm/next.c:19
#define VOID_T
Definition qtree.h:28
struct list * list
Definition read_list.c:24