GRASS GIS 8 Programmer's Manual 8.4.1(2025)-45ca3179ab
Loading...
Searching...
No Matches
free.c
Go to the documentation of this file.
1#include <stdlib.h>
2
3#include <grass/btree.h>
4
5int btree_free(BTREE *B)
6{
7 void *data, *key;
8
10 while (btree_next(B, &key, &data)) {
11 free(key);
12 free(data);
13 }
14 free(B->node);
15
16 return 0;
17}
int btree_next(BTREE *B, void **key, void **data)
Definition btree/next.c:3
int btree_free(BTREE *B)
Definition free.c:5
int btree_rewind(BTREE *B)
Definition rewind.c:3