btrfs: add forward declarations and headers, part 1
[linux-block.git] / fs / btrfs / orphan.h
CommitLineData
aa5d3003
JB
1/* SPDX-License-Identifier: GPL-2.0 */
2
3#ifndef BTRFS_ORPHAN_H
4#define BTRFS_ORPHAN_H
5
22b46bdc
DS
6#include <linux/types.h>
7
8struct btrfs_trans_handle;
9struct btrfs_root;
10
aa5d3003
JB
11int btrfs_insert_orphan_item(struct btrfs_trans_handle *trans,
12 struct btrfs_root *root, u64 offset);
13int btrfs_del_orphan_item(struct btrfs_trans_handle *trans,
14 struct btrfs_root *root, u64 offset);
15
16#endif