cpp_rs 0.1.0

[Not currently ready] A C Preprocessor library and associated binary.
Documentation
1
2
3
4
5
6
7
8
use std::path::PathBuf;

#[derive(Debug)]
pub enum PreprocessError {
    /// The provided include directory is either not a directory or is somehow
    /// unaccessable to the current user.
    NotAValidDirectory(PathBuf),
}