diff options
author | 2021-05-26 15:19:45 +0200 | |
---|---|---|
committer | 2021-05-26 19:15:31 +0200 | |
commit | 9add8034d2b92fe8cd876ab16c63831ce460e7e2 (patch) | |
tree | 5012a1ec8f5df8389a99805d9443351cb9653141 /src/lib/formats/fsmgr.h | |
parent | ec2bec33c2e53dada0970411f3b897930516d284 (diff) |
vtech: Add floppy formats and fs
Diffstat (limited to 'src/lib/formats/fsmgr.h')
-rw-r--r-- | src/lib/formats/fsmgr.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lib/formats/fsmgr.h b/src/lib/formats/fsmgr.h index 8ae9ddeb452..d407a597c6e 100644 --- a/src/lib/formats/fsmgr.h +++ b/src/lib/formats/fsmgr.h @@ -16,6 +16,7 @@ #include <functional> enum class fs_meta_name { + basic, creation_date, length, loading_address, @@ -380,6 +381,8 @@ public: static uint32_t r24l(const uint8_t *p); static uint32_t r32l(const uint8_t *p); + static std::string trim_end_spaces(const std::string &str); + protected: fsblk_t &m_blockdev; }; |