Function device_tree_source::parser::escape_c_string []

pub fn escape_c_string(i: &[u8]) -> IResult<&[u8], String, u32>

Parse a slice of bytes as a String, replacing escape codes with the appropriate character. Characters may be described as a C-style escape code. All hexadecimal and octal escape codes work up to 0x7f or x177, respectively. This is due to the conversion to chars. See parser::escape_c_char if a conversion of a character beyond this change is needed.