blob: 1f68cdb2cc1884c08340c944b3189ef8911f46d1 (
plain)
1
2
3
4
5
6
7
8
9
|
#ifndef FILEUTILS_H_
#define FILEUTILS_H_
#include <string>
std::string lookup_file(const std::string &filename,
const std::string &path, const std::string &fallbackpath);
#endif
|