mirror of
https://github.com/Force67/ps4delta.git
synced 2025-04-02 11:01:45 -04:00
17 lines
No EOL
377 B
C++
17 lines
No EOL
377 B
C++
#pragma once
|
|
|
|
/*
|
|
* UTL : The universal utility library
|
|
*
|
|
* Copyright 2019-2020 Force67.
|
|
* For information regarding licensing see LICENSE
|
|
* in the root of the source tree.
|
|
*/
|
|
|
|
#include <string>
|
|
|
|
// implements various path utility functions
|
|
namespace utl {
|
|
std::wstring make_abs_path(const std::wstring &relative);
|
|
std::string make_abs_path(const std::string &relative);
|
|
} |