volume: move vnode encode/decode functions to vnode.c

This commit is contained in:
2025-06-23 13:44:16 +01:00
parent 10231ecb3e
commit d0d7eb05ac
3 changed files with 33 additions and 24 deletions

View File

@@ -18,4 +18,11 @@ extern enum ec3_status ec3_vnode_from_file_info(
const struct b_file_info *file_info,
struct ec3_vnode *out);
extern void ec3_vnode_encode(
const struct ec3_vnode *in,
struct ec3_bin_vnode *out);
extern void ec3_vnode_decode(
const struct ec3_bin_vnode *in,
struct ec3_vnode *out);
#endif