blob: 6de3d84eecde00c20b760fe02c8cdc7dad3286bc [file] [log] [blame]
// Part of the Crubit project, under the Apache License v2.0 with LLVM
// Exceptions. See /LICENSE for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
#ifndef CRUBIT_COMMON_FILE_IO_H_
#define CRUBIT_COMMON_FILE_IO_H_
#include <string>
#include "third_party/absl/status/statusor.h"
namespace crubit {
absl::Status SetFileContents(absl::string_view path,
absl::string_view contents);
} // namespace crubit
#endif // CRUBIT_COMMON_FILE_IO_H_