From 14a93ab8813b5e3cfb10ee71b393cf1e0189d2b3 Mon Sep 17 00:00:00 2001 From: "S.J.R. van Schaik" Date: Mon, 12 Jun 2017 16:44:53 +0200 Subject: [PATCH] mufs: expose struct mufs_dir internally --- source/fs/mufs/dir.c | 6 ------ source/fs/mufs/dir.h | 6 ++++++ 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/source/fs/mufs/dir.c b/source/fs/mufs/dir.c index af4e4c8..c72c2d0 100644 --- a/source/fs/mufs/dir.c +++ b/source/fs/mufs/dir.c @@ -13,12 +13,6 @@ #include "path.h" #include "tree.h" -struct mufs_dir { - struct mufs *fs; - struct mufs_tree *tree; - uint32_t va; -}; - char *mufs_abspath(const char *path) { char *s, *p, *next, *prev; diff --git a/source/fs/mufs/dir.h b/source/fs/mufs/dir.h index 063f520..bb50def 100644 --- a/source/fs/mufs/dir.h +++ b/source/fs/mufs/dir.h @@ -1,5 +1,11 @@ #pragma once +struct mufs_dir { + struct mufs *fs; + struct mufs_tree *tree; + uint32_t va; +}; + struct mufs_dtree { uint32_t file_size; uint32_t root;