diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-11-05 21:16:28 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-11-05 21:16:36 +0100 |
| commit | 964f0d8ca36d9333efcfd3136a5cae77dc5dded4 (patch) | |
| tree | 57eb44165e6008a3561970f5f5d86cb686fc2cbe /dev/lib/utility | |
| parent | 01c6071ac4a64cbee4270a73f0fe88b10b31097d (diff) | |
feat: lib: implement basic_url and fix httptest header.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev/lib/utility')
| -rw-r--r-- | dev/lib/utility/embfs.hpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/dev/lib/utility/embfs.hpp b/dev/lib/utility/embfs.hpp index 689082c..2738ae7 100644 --- a/dev/lib/utility/embfs.hpp +++ b/dev/lib/utility/embfs.hpp @@ -28,7 +28,7 @@ namespace scl::embfs inline constexpr const size_t _inode_arr_len = 12; inline constexpr const size_t _inode_lookup_len = 8; -#ifdef EMBFS_28BIT_LBA +#if defined(EMBFS_28BIT_LBA) typedef std::uint32_t lba_t; #elif defined(EMBFS_48BIT_LBA) typedef std::uint64_t lba_t; @@ -37,6 +37,7 @@ namespace scl::embfs #endif typedef std::int16_t sword_t; + typedef std::int32_t sdword_t; typedef std::uint8_t utf8_char_t; |
