summaryrefslogtreecommitdiff
path: root/core/libdeno/file_util.h
diff options
context:
space:
mode:
Diffstat (limited to 'core/libdeno/file_util.h')
-rw-r--r--core/libdeno/file_util.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/core/libdeno/file_util.h b/core/libdeno/file_util.h
deleted file mode 100644
index 0177f2c94..000000000
--- a/core/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_