2 ** This software is provided AS-IS with no warranty, either express or
5 ** This software is dual licensed under the MIT and GPLv3 licenses.
7 module iv
.libstrophe
.utils
/*is aliced*/;
11 // ////////////////////////////////////////////////////////////////////////// //
12 char* xmpp_toStrz (const(char)[] s
) {
13 auto res
= new char[](s
.length
+1);
15 res
[0..s
.length
] = s
[];
20 T
[] xmpp_fromStrz(T
: char) (T
* s
) {
21 if (s
is null) return null;