blob: f24442780a8c3ceb944dad5c0fde70eafbe401b0 [file] [log] [blame]
// Copyright 2019 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 DEBUGD_SRC_HELPER_UTILS_H_
#define DEBUGD_SRC_HELPER_UTILS_H_
#include <string>
namespace debugd {
// Get the full path of a helper executable located at the |relative_path|
// relative to the debugd helpers directory. Return false if the full path
// is too long.
bool GetHelperPath(const std::string& relative_path, std::string* full_path);
} // namespace debugd
#endif // DEBUGD_SRC_HELPER_UTILS_H_