mufs: reduce memory footprint in block allocation

This commit is contained in:
S.J.R. van Schaik 2017-06-16 14:20:43 +02:00
parent a22b59b2a8
commit 3c35521979
2 changed files with 50 additions and 35 deletions

View file

@ -1,4 +1,5 @@
#pragma once
int mufs_mark_block(struct mufs *fs, uint32_t block, int status);
int mufs_alloc_block(struct mufs *fs, uint32_t *block);
int mufs_free_block(struct mufs *fs, uint32_t block);