pub fn count_lines_words(data: &[u8], utf8: bool) -> (u64, u64)
Count lines and words using optimized strategies per locale. UTF-8: separate SIMD memchr + state machine passes. C locale: single scalar pass with 3-state logic.