30 lines
477 B
C
30 lines
477 B
C
![]() |
/*
|
||
|
* Copyright (C) 2023 Intel Corporation
|
||
|
*
|
||
|
* SPDX-License-Identifier: MIT
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include "os_inc.h"
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
namespace NEO {
|
||
|
inline std::string joinPath(const std::string &lhs, const std::string &rhs) {
|
||
|
if (lhs.size() == 0) {
|
||
|
return rhs;
|
||
|
}
|
||
|
|
||
|
if (rhs.size() == 0) {
|
||
|
return lhs;
|
||
|
}
|
||
|
|
||
|
if (*lhs.rbegin() == PATH_SEPARATOR) {
|
||
|
return lhs + rhs;
|
||
|
}
|
||
|
|
||
|
return lhs + PATH_SEPARATOR + rhs;
|
||
|
}
|
||
|
} // namespace NEO
|