windows_metadata/reader/
mod.rs

1use super::*;
2
3mod blob;
4mod codes;
5mod file;
6mod index;
7mod row;
8mod tables;
9mod type_category;
10
11pub use blob::*;
12pub use codes::*;
13pub use file::*;
14pub use index::*;
15pub use row::*;
16pub use tables::*;
17pub use type_category::*;
18
19fn trim_tick(name: &str) -> &str {
20    if name.as_bytes().iter().rev().nth(1) == Some(&b'`') {
21        &name[..name.len() - 2]
22    } else {
23        name
24    }
25}