diff options
Diffstat (limited to 'libdeno/file_util.h')
-rw-r--r-- | libdeno/file_util.h | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/libdeno/file_util.h b/libdeno/file_util.h deleted file mode 100644 index 0177f2c94..000000000 --- a/libdeno/file_util.h +++ /dev/null @@ -1,14 +0,0 @@ -// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. -#ifndef FILE_UTIL_H_ -#define FILE_UTIL_H_ - -#include <string> - -namespace deno { -bool ReadFileToString(const char* fn, std::string* contents); -std::string Basename(std::string const& filename); -std::string Dirname(std::string const& filename); -bool ExePath(std::string* path); -} // namespace deno - -#endif // FILE_UTIL_H_ |