LydiaSyft
misc.h
1 #ifndef LYDIASYFT_MISC_H
2 #define LYDIASYFT_MISC_H
3 
4 #include <optional>
5 #include <string>
6 
7 namespace Syft {
8 
9  std::optional<std::string> find_executable_using_which(const std::string& executable);
10 
11 }
12 
13 
14 #endif //LYDIASYFT_MISC_H