pub fn originate_split(
line: &str,
split_at: char,
) -> Result<Vec<String>, OriginateError>Expand description
Quote-aware tokenizer for originate command strings.
Splits line on split_at (default: space), respecting single-quote
pairing to avoid splitting inside quoted values. Backslash-escaped quotes
are not treated as quote boundaries.
Ported from Python originate_split().