| /* libxml2 - Library for parsing XML documents |
| * Copyright (C) 2006-2019 Free Software Foundation, Inc. |
| * |
| * This file is not part of the GNU gettext program, but is used with |
| * GNU gettext. |
| * |
| * The original copyright notice is as follows: |
| */ |
| |
| /* |
| * Copyright (C) 1998-2012 Daniel Veillard. All Rights Reserved. |
| * |
| * Permission is hereby granted, free of charge, to any person obtaining a copy |
| * of this software and associated documentation files (the "Software"), to deal |
| * in the Software without restriction, including without limitation the rights |
| * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| * copies of the Software, and to permit persons to whom the Software is fur- |
| * nished to do so, subject to the following conditions: |
| * |
| * The above copyright notice and this permission notice shall be included in |
| * all copies or substantial portions of the Software. |
| * |
| * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FIT- |
| * NESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
| * THE SOFTWARE. |
| * |
| * Author: Daniel Veillard |
| */ |
| |
| /* |
| * Summary: Internal Interfaces for memory buffers in libxml2 |
| * Description: this module describes most of the new xmlBuf buffer |
| * entry points, those are private routines, with a |
| * few exceptions exported in tree.h. This was added |
| * in 2.9.0. |
| */ |
| |
| #ifndef __XML_BUF_H__ |
| #define __XML_BUF_H__ |
| |
| #include <libxml/tree.h> |
| |
| #ifdef __cplusplus |
| extern "C" { |
| #endif |
| |
| xmlBufPtr xmlBufCreate(void); |
| xmlBufPtr xmlBufCreateSize(size_t size); |
| xmlBufPtr xmlBufCreateStatic(void *mem, size_t size); |
| |
| int xmlBufSetAllocationScheme(xmlBufPtr buf, |
| xmlBufferAllocationScheme scheme); |
| int xmlBufGetAllocationScheme(xmlBufPtr buf); |
| |
| void xmlBufFree(xmlBufPtr buf); |
| void xmlBufEmpty(xmlBufPtr buf); |
| |
| /* size_t xmlBufShrink(xmlBufPtr buf, size_t len); */ |
| int xmlBufGrow(xmlBufPtr buf, int len); |
| int xmlBufInflate(xmlBufPtr buf, size_t len); |
| int xmlBufResize(xmlBufPtr buf, size_t len); |
| |
| int xmlBufAdd(xmlBufPtr buf, const xmlChar *str, int len); |
| int xmlBufAddHead(xmlBufPtr buf, const xmlChar *str, int len); |
| int xmlBufCat(xmlBufPtr buf, const xmlChar *str); |
| int xmlBufCCat(xmlBufPtr buf, const char *str); |
| int xmlBufWriteCHAR(xmlBufPtr buf, const xmlChar *string); |
| int xmlBufWriteChar(xmlBufPtr buf, const char *string); |
| int xmlBufWriteQuotedString(xmlBufPtr buf, const xmlChar *string); |
| |
| size_t xmlBufAvail(const xmlBufPtr buf); |
| size_t xmlBufLength(const xmlBufPtr buf); |
| /* size_t xmlBufUse(const xmlBufPtr buf); */ |
| int xmlBufIsEmpty(const xmlBufPtr buf); |
| int xmlBufAddLen(xmlBufPtr buf, size_t len); |
| int xmlBufErase(xmlBufPtr buf, size_t len); |
| |
| /* const xmlChar * xmlBufContent(const xmlBuf *buf); */ |
| /* const xmlChar * xmlBufEnd(xmlBufPtr buf); */ |
| |
| xmlChar * xmlBufDetach(xmlBufPtr buf); |
| |
| size_t xmlBufDump(FILE *file, xmlBufPtr buf); |
| |
| xmlBufPtr xmlBufFromBuffer(xmlBufferPtr buffer); |
| xmlBufferPtr xmlBufBackToBuffer(xmlBufPtr buf); |
| int xmlBufMergeBuffer(xmlBufPtr buf, xmlBufferPtr buffer); |
| |
| int xmlBufResetInput(xmlBufPtr buf, xmlParserInputPtr input); |
| size_t xmlBufGetInputBase(xmlBufPtr buf, xmlParserInputPtr input); |
| int xmlBufSetInputBaseCur(xmlBufPtr buf, xmlParserInputPtr input, |
| size_t base, size_t cur); |
| #ifdef __cplusplus |
| } |
| #endif |
| #endif /* __XML_BUF_H__ */ |
| |