search_neuware_tools/lib.rs
1#![doc = include_str!("../README.md")]
2#![deny(warnings, unsafe_code, missing_docs)]
3
4use std::{env::var_os, path::PathBuf};
5
6/// Returns the path to the Neuware home directory, if it is set.
7#[inline]
8pub fn find_neuware_home() -> Option<PathBuf> {
9 var_os("NEUWARE_HOME").map(PathBuf::from)
10}