• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright 2023 The Chromium Authors
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #ifndef BSSL_FILLINS_FILE_UTIL_H
6 #define BSSL_FILLINS_FILE_UTIL_H
7 
8 #include <openssl/base.h>
9 
10 #include "path_service.h"
11 
12 #include <string>
13 
14 namespace bssl {
15 
16 namespace fillins {
17 
18 bool ReadFileToString(const FilePath &path, std::string *out);
19 
20 }  // namespace fillins
21 
22 }  // namespace bssl
23 
24 #endif  // BSSL_FILLINS_FILE_UTIL_H
25