From aaabc853e84a03f72208c0e80634bd986c3ca4e2 Mon Sep 17 00:00:00 2001 From: Yoshiya Hinosawa Date: Sun, 19 Aug 2018 16:44:10 +0900 Subject: chore: move libdeno files to //libdeno/ --- libdeno/file_util.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 libdeno/file_util.h (limited to 'libdeno/file_util.h') diff --git a/libdeno/file_util.h b/libdeno/file_util.h new file mode 100644 index 000000000..c8c0e5759 --- /dev/null +++ b/libdeno/file_util.h @@ -0,0 +1,12 @@ +// Copyright 2018 the Deno authors. All rights reserved. MIT license. +#ifndef FILE_UTIL_H_ +#define FILE_UTIL_H_ + +#include + +namespace deno { +bool ReadFileToString(const char* fn, std::string* contents); +std::string Basename(std::string const& filename); +} // namespace deno + +#endif // FILE_UTIL_H_ -- cgit v1.2.3