Add a quick format option for mkfat32
Added open implementation Needed to return a pointer to the file system as `@fieldParentPtr(Fat32Self, "instance", fs.instance)` doesn't work as the the pointer to `instance` is on the stack, then goes out of scope when the init is returned. So will be using free stack space. Part of #216 Spelling, doc comments and extra test for open file init -> create, deinit -> destroy
This commit is contained in:
parent
48e0779d84
commit
d5de173fd3
4 changed files with 419 additions and 60 deletions
|
@ -245,6 +245,9 @@ pub const Error = error{
|
|||
|
||||
/// No symlink target was provided when one was expected
|
||||
NoSymlinkTarget,
|
||||
|
||||
/// An unexpected error ocurred when performing a VFS operation.
|
||||
Unexpected,
|
||||
};
|
||||
|
||||
/// Errors that can be thrown when attempting to mount
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue