mirror of
https://github.com/versity/scoutfs.git
synced 2026-02-10 12:40:09 +00:00
Use little helpers to insert items into new single block btrees for mkfs. We're about to insert a whole bunch more items. Signed-off-by: Zach Brown <zab@versity.com>
11 lines
300 B
C
11 lines
300 B
C
#ifndef _AVL_H_
|
|
#define _AVL_H_
|
|
|
|
__le16 avl_node_off(struct scoutfs_avl_root *root,
|
|
struct scoutfs_avl_node *node);
|
|
struct scoutfs_avl_node *avl_first(struct scoutfs_avl_root *root);
|
|
struct scoutfs_avl_node *avl_next(struct scoutfs_avl_root *root,
|
|
struct scoutfs_avl_node *node);
|
|
|
|
#endif
|