blob: 66b65cae3fb6ef5686843e2c0e3d2d2312f4e574 [file] [log] [blame]
// Copyright 2022 The ChromiumOS Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CROSLOG_RELATIVE_TIME_UTIL_H_
#define CROSLOG_RELATIVE_TIME_UTIL_H_
#include <string>
#include <base/time/time.h>
namespace croslog {
bool ParseRelativeTime(const std::string& duration_str, base::Time* output);
} // namespace croslog
#endif // CROSLOG_RELATIVE_TIME_UTIL_H_