Maraiah/maraiah/map/name.rs

12 lines
185 B
Rust
Raw Normal View History

2019-04-12 18:46:51 -07:00
//! `NAME` chunk.
2019-06-13 18:09:07 -07:00
use crate::{err::*, text::mac_roman_cstr};
2019-04-12 18:46:51 -07:00
/// Reads a `NAME` chunk.
pub fn read(b: &[u8]) -> ResultS<(String, usize)>
{
2019-07-05 20:21:11 -07:00
Ok((mac_roman_cstr(b), b.len()))
2019-04-12 18:46:51 -07:00
}
// EOF