()
| 1952 | } |
| 1953 | |
| 1954 | fn regex_quoted_include_line() -> &'static Regex { |
| 1955 | static VALUE: OnceLock<Regex> = OnceLock::new(); |
| 1956 | VALUE.get_or_init(|| Regex::new(r#"^\s*#\s*include\s+"([^"]+)""#).unwrap()) |
| 1957 | } |
| 1958 | |
| 1959 | fn regex_builtin_memcpy() -> &'static Regex { |
| 1960 | static VALUE: OnceLock<Regex> = OnceLock::new(); |
no outgoing calls
no test coverage detected