Function sv_parser::preprocess_str

source ·
pub fn preprocess_str<T, U, V>(
    s: &str,
    path: T,
    pre_defines: &HashMap<String, Option<Define>, V>,
    include_paths: &[U],
    ignore_include: bool,
    strip_comments: bool,
    resolve_depth: usize,
    include_depth: usize
) -> Result<(PreprocessedText, HashMap<String, Option<Define>>), Error>where
    T: AsRef<Path>,
    U: AsRef<Path>,
    V: BuildHasher,