summaryrefslogtreecommitdiff
path: root/src/file_util.h
blob: bba512c0dc3d8f91ae05c0d1b107f1bf138a2607 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright 2018 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 BinaryContentAsC(const char* name, const std::string& data);
}  // namespace deno

#endif  // FILE_UTIL_H_