X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=include%2Fyaz%2Fwrbuf.h;h=d716af06e020042360d2234ba931a0349c3d3d42;hp=12965380d2c23893687cc2d390d2a71a6a99eca8;hb=457156ca85763b2329eaf066918e2d379c61d47d;hpb=89a547847448c1288ce39a0d5af1a1f18378e979 diff --git a/include/yaz/wrbuf.h b/include/yaz/wrbuf.h index 1296538..d716af0 100644 --- a/include/yaz/wrbuf.h +++ b/include/yaz/wrbuf.h @@ -1,5 +1,5 @@ /* This file is part of the YAZ toolkit. - * Copyright (C) 1995-2011 Index Data. + * Copyright (C) 1995-2013 Index Data. * All rights reserved. * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: @@ -53,7 +53,7 @@ YAZ_EXPORT WRBUF wrbuf_alloc(void); /** \brief destroy WRBUF and its buffer \param b WRBUF - + For YAZ 4.0.2 WRBUF b may be NULL. */ YAZ_EXPORT void wrbuf_destroy(WRBUF b); @@ -63,13 +63,21 @@ YAZ_EXPORT void wrbuf_destroy(WRBUF b); */ YAZ_EXPORT void wrbuf_rewind(WRBUF b); -/** \brief append constant size buffer to WRBU +/** \brief append constant size buffer to WRBUF \param b WRBUF \param buf buffer \param size size of buffer */ YAZ_EXPORT void wrbuf_write(WRBUF b, const char *buf, size_t size); +/** \brief inserts buffer into WRBUF at some position + \param b WRBUF + \param pos position (0=beginning) + \param buf buffer + \param size size of buffer + */ +YAZ_EXPORT void wrbuf_insert(WRBUF b, size_t pos, const char *buf, size_t size); + /** \brief appends C-string to WRBUF \param b WRBUF \param buf C-string (0-terminated) @@ -101,7 +109,7 @@ YAZ_EXPORT void wrbuf_xmlputs(WRBUF b, const char *cp); \param from character "from" \param to charcter "to" */ -YAZ_EXPORT void wrbuf_puts_replace_char(WRBUF b, const char *buf, +YAZ_EXPORT void wrbuf_puts_replace_char(WRBUF b, const char *buf, const char from, const char to); /** \brief writes C-string to WRBUF and escape non-ASCII characters @@ -186,7 +194,7 @@ YAZ_EXPORT void wrbuf_iconv_putchar(WRBUF b, yaz_iconv_t cd, int ch); /** \brief iconv reset(flush) to WRBUF \param b \param cd iconv handle - + This function calls iconv(cd, 0, 0, ..) to make it flush any remaining content. */ @@ -203,7 +211,7 @@ YAZ_EXPORT void wrbuf_chop_right(WRBUF b); */ YAZ_EXPORT void wrbuf_cut_right(WRBUF b, size_t no_to_remove); -/** \brief grow WRBUF larger +/** \brief grow WRBUF larger \param b WRBUF \param minsize make WRBUF at least this size