blob: 556e643c13161428e9b8f7d36651ef6c383f9a1e [file] [log] [blame]
// Copyright 2021 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef SECANOMALYD_MOUNTS_H_
#define SECANOMALYD_MOUNTS_H_
#include <string>
#include <vector>
#include <base/optional.h>
#include "secanomalyd/mount_entry.h"
using MountEntries = std::vector<MountEntry>;
using MaybeMountEntries = base::Optional<MountEntries>;
MaybeMountEntries ReadMounts();
// Used mostly for testing.
MaybeMountEntries ReadMountsFromString(const std::string& mounts);
#endif // SECANOMALYD_MOUNTS_H_