blob: cd087fd6b7dbe5672b21219733be9a89afa9cbdf (
plain)
1
2
3
4
5
6
7
8
|
//! AFS B-tree Constants
pub const node_type_leaf: i8 = -1;
pub const node_type_index: i8 = 0;
pub const node_type_header: i8 = 1;
pub const node_type_map: i8 = 2;
pub const header_node_number: u32 = 0;
|