/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
/*
* This file is part of LibreOffice published API.
*/
#ifndef INCLUDED_RTL_STRBUF_H
#define INCLUDED_RTL_STRBUF_H
#include "sal/config.h"
#include "rtl/string.h"
#include "sal/saldllapi.h"
#ifdef __cplusplus
extern "C" {
#endif
/** Allocates a new String
that contains characters from
the character array argument.
The count
argument specifies
the length of the array. The initial capacity of the string buffer is
16
plus the length of the string argument.
@param newStr out parameter, contains the new string. The reference count is 1.
@param value the initial value of the string.
@param count the length of value.
*/
SAL_DLLPUBLIC void SAL_CALL rtl_stringbuffer_newFromStr_WithLength(
rtl_String ** newStr,
const char * value,
sal_Int32 count);
/**
Allocates a new String
that contains the same sequence of
characters as the string argument.
The initial capacity is the larger of:
Rather use ScopeGuard to prevent catch and rethrow