X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=util%2Fwrbuf.c;h=4cfc8d8244f7357dbf4f86a26736516d5012f258;hp=c948dc1180941b9eb24513de58accab45d043351;hb=b440dce0831a72bebe4f4821ab7771cc05e8facb;hpb=044d170f0a963555486df54653cd2fdc5815928b diff --git a/util/wrbuf.c b/util/wrbuf.c index c948dc1..4cfc8d8 100644 --- a/util/wrbuf.c +++ b/util/wrbuf.c @@ -1,10 +1,13 @@ /* - * Copyright (c) 1995, Index Data. + * Copyright (c) 1995-1999, Index Data. * See the file LICENSE for details. * Sebastian Hammer, Adam Dickmeiss * * $Log: wrbuf.c,v $ - * Revision 1.4 1998-02-11 11:53:36 adam + * Revision 1.5 1999-08-27 09:40:32 adam + * Renamed logf function to yaz_log. Removed VC++ project files. + * + * Revision 1.4 1998/02/11 11:53:36 adam * Changed code so that it compiles as C++. * * Revision 1.3 1997/05/01 15:08:15 adam @@ -69,7 +72,7 @@ int wrbuf_grow(WRBUF b, int minsize) return 0; } -int wrbuf_write(WRBUF b, char *buf, int size) +int wrbuf_write(WRBUF b, const char *buf, int size) { if (b->pos + size >= b->size) wrbuf_grow(b, size);