Maraiah/source/marathon/map/name.rs

12 lines
207 B
Rust
Raw Normal View History

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