]> git.ipfire.org Git - thirdparty/squid.git/blob - src/sbuf/StringConvert.h
Source Format Enforcement (#763)
[thirdparty/squid.git] / src / sbuf / StringConvert.h
1 /*
2 * Copyright (C) 1996-2021 The Squid Software Foundation and contributors
3 *
4 * Squid software is distributed under GPLv2+ license and includes
5 * contributions from numerous individuals and organizations.
6 * Please see the COPYING and CONTRIBUTORS files for details.
7 */
8
9 #ifndef SQUID_SRC_SBUF_SBUFSTRING_H_
10 #define SQUID_SRC_SBUF_SBUFSTRING_H_
11
12 #include "sbuf/SBuf.h"
13 #include "SquidString.h"
14
15 /// create a new SBuf from a String by copying contents
16 inline SBuf
17 StringToSBuf(const String &s)
18 {
19 return SBuf(s.rawBuf(), s.size());
20 }
21
22 /** create a new String from a SBuf by copying contents
23 * \deprecated
24 */
25 inline String
26 SBufToString(const SBuf &s)
27 {
28 String rv;
29 rv.assign(s.rawContent(), s.length());
30 return rv;
31 }
32
33 #endif /* SQUID_SRC_SBUF_SBUFSTRING_H_ */
34