summaryrefslogtreecommitdiff
path: root/core/libdeno/file_util.h
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2019-06-04 19:35:51 +0200
committerRyan Dahl <ry@tinyclouds.org>2019-07-08 18:18:28 -0400
commitd641782c823317a2d2f64d646a0d5b8b6c22b771 (patch)
treea03beb0939a46333636d0de68eee052978103cfe /core/libdeno/file_util.h
parent79c3439f269f1e0e24003518e363988fa4f1da33 (diff)
Rewrite snapshot_creator in Rust
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_