parse_repeater_list

Function parse_repeater_list 

Source
pub fn parse_repeater_list(
    data: &[u8],
) -> Result<Vec<RepeaterEntry>, SdCardError>
Expand description

Parses a repeater list TSV file from raw bytes.

Expects UTF-16LE encoding with a BOM prefix (FF FE). The first line is treated as a column header and is skipped.

ยงErrors

Returns an SdCardError if the encoding is invalid or any data row has an unexpected column count.