kconfig-linux 0.1.1

WIP crate for the KConfig DSL in the Linux kernel
Documentation
1
2
3
4
5
use std::path::Path;

pub fn get_string_from_path(path: &Path) -> String {
    path.to_str().unwrap_or("<unknown>").to_string()
}