()
| 1905 | } |
| 1906 | |
| 1907 | fn regex_malloc_family() -> &'static Regex { |
| 1908 | static VALUE: OnceLock<Regex> = OnceLock::new(); |
| 1909 | VALUE.get_or_init(|| Regex::new(r"\b(malloc|calloc|realloc)\s*\(").unwrap()) |
| 1910 | } |
| 1911 | |
| 1912 | fn regex_free() -> &'static Regex { |
| 1913 | static VALUE: OnceLock<Regex> = OnceLock::new(); |