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/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #include <config_probes.h>
21 #include <rtl/strbuf.h>
24 #define RTL_LOG_STRING_BITS 8
27 #include "strtmpl.hxx"
29 /*************************************************************************
30 * rtl_stringbuffer_newFromStr_WithLength
32 void SAL_CALL
rtl_stringbuffer_newFromStr_WithLength( rtl_String
** newStr
,
36 rtl::str::stringbuffer_newFromStr_WithLength(newStr
, value
, count
);
39 /*************************************************************************
40 * rtl_stringbuffer_newFromStringBuffer
42 sal_Int32 SAL_CALL
rtl_stringbuffer_newFromStringBuffer( rtl_String
** newStr
,
46 return rtl::str::stringbuffer_newFromStringBuffer(newStr
, capacity
, oldStr
);
49 /*************************************************************************
50 * rtl_stringbuffer_ensureCapacity
52 void SAL_CALL rtl_stringbuffer_ensureCapacity
53 (rtl_String
** This
, sal_Int32
* capacity
, sal_Int32 minimumCapacity
)
55 rtl::str::stringbuffer_ensureCapacity(This
, capacity
, minimumCapacity
);
58 /*************************************************************************
59 * rtl_stringbuffer_insert
61 void SAL_CALL
rtl_stringbuffer_insert( rtl_String
** This
,
67 rtl::str::stringbuffer_insert(This
, capacity
, offset
, str
, len
);
70 /*************************************************************************
71 * rtl_stringbuffer_remove
73 void SAL_CALL
rtl_stringbuffer_remove( rtl_String
** This
,
77 rtl::str::stringbuffer_remove(This
, start
, len
);
80 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */