1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
10 #include <sal/config.h>
12 #include <rtl/ustrbuf.hxx>
13 #include <sal/types.h>
15 #include <appendsqlwchars.hxx>
17 namespace connectivity
{ namespace odbc
{
19 void appendSQLWCHARs(OUStringBuffer
& s
, const sal_Unicode
* d
, sal_Int32 n
)
24 #if defined SAL_UNICODE_NOTEQUAL_WCHAR_T
25 static_assert(sizeof (wchar_t) == 4, "sizeof wchar_t must be 4 for this to work");
26 void appendSQLWCHARs(OUStringBuffer
& s
, const wchar_t* d
, sal_Int32 n
)
28 const wchar_t * const end
= d
+ n
;
38 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */