Add translations for various sub-directories
[binutils-gdb.git] / gdbsupport / gdb_tilde_expand.h
blob9618a0c75b10c471648dc7519003983ff3f07223
1 /* Perform tilde expansion on paths for GDB and gdbserver.
3 Copyright (C) 2017-2024 Free Software Foundation, Inc.
5 This file is part of GDB.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
20 #ifndef GDBSUPPORT_GDB_TILDE_EXPAND_H
21 #define GDBSUPPORT_GDB_TILDE_EXPAND_H
23 /* Perform tilde expansion on PATH, and return the full path. */
24 extern std::string gdb_tilde_expand (const char *path);
26 /* Overload of gdb_tilde_expand that takes std::string. */
27 static inline std::string
28 gdb_tilde_expand (const std::string &path)
30 return gdb_tilde_expand (path.c_str ());
33 /* Overload of gdb_tilde_expand that takes gdb::unique_xmalloc_ptr<char>. */
34 static inline std::string
35 gdb_tilde_expand (const gdb::unique_xmalloc_ptr<char> &path)
37 return gdb_tilde_expand (path.get ());
40 #endif /* GDBSUPPORT_GDB_TILDE_EXPAND_H */