summaryrefslogtreecommitdiffstats
path: root/src/common/win32/wstring.h
blob: cb308c70dbbb66db4cc8b148f22c3b82a8cb0646 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
 * Ceph - scalable distributed file system
 *
 * Copyright (C) 2022 Cloudbase Solutions
 *
 * This is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License version 2.1, as published by the Free Software
 * Foundation.  See file COPYING.
 *
 */

#pragma once

#include <string>

std::wstring to_wstring(const std::string& str);
std::string to_string(const std::wstring& wstr);