|
GRASS 8 Programmer's Manual
8.5.0dev(2025)-9d806b45d8
|

Go to the source code of this file.
Functions | |
| int | btree_create (BTREE *, int(*)(const void *, const void *), int) |
| int | btree_find (const BTREE *, const void *, void **) |
| int | btree_free (BTREE *) |
| int | btree_next (BTREE *, void **, void **) |
| int | btree_rewind (BTREE *) |
| int | btree_update (BTREE *, const void *, int, const void *, int) |
| int btree_create | ( | BTREE * | B, |
| int(*)(const void *, const void *) | cmp, | ||
| int | incr | ||
| ) |
| int btree_find | ( | const BTREE * | B, |
| const void * | key, | ||
| void ** | data | ||
| ) |
Definition at line 4 of file btree/find.c.
| int btree_next | ( | BTREE * | B, |
| void ** | key, | ||
| void ** | data | ||
| ) |
Definition at line 3 of file btree/next.c.
| int btree_rewind | ( | BTREE * | B | ) |
Definition at line 3 of file btree/rewind.c.
References BTREE::cur.
| int btree_update | ( | BTREE * | B, |
| const void * | key, | ||
| int | keylen, | ||
| const void * | data, | ||
| int | datalen | ||
| ) |
Definition at line 8 of file btree/update.c.