commit | b5239c9bb6f668f6d39610d602edb31ba239af30 | [log] [tgz] |
---|---|---|
author | Marco Poletti <mpoletti@google.com> | Wed May 11 09:46:05 2022 -0700 |
committer | Copybara-Service <copybara-worker@google.com> | Wed May 11 09:46:34 2022 -0700 |
tree | bbe25807155f0dfc90f84893028c023364666030 | |
parent | 6efd17f69577b64ac40ccbfa637dca5e4abbf318 [diff] [blame] |
Create the skeleton of the C++ -> Rust migration tool. PiperOrigin-RevId: 448016954
diff --git a/common/file_io.h b/common/file_io.h index 7ab9ff8..b2924d6 100644 --- a/common/file_io.h +++ b/common/file_io.h
@@ -11,6 +11,8 @@ namespace crubit { +absl::StatusOr<std::string> GetFileContents(absl::string_view path); + absl::Status SetFileContents(absl::string_view path, absl::string_view contents);