X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/mLib/blobdiff_plain/20eb516fdebd2fb901e6a09ffa7e741cfb8e3a83..9fcce036ef8b14c12fc4482efc7c8cf75da3b31f:/dstr.h diff --git a/dstr.h b/dstr.h index 538dd33..019758a 100644 --- a/dstr.h +++ b/dstr.h @@ -1,13 +1,13 @@ /* -*-c-*- * - * $Id: dstr.h,v 1.11 2000/06/17 10:37:39 mdw Exp $ + * $Id: dstr.h,v 1.13 2004/04/08 01:36:11 mdw Exp $ * * Handle dynamically growing strings * * (c) 1998 Straylight/Edgeware */ -/*----- Licensing notice --------------------------------------------------* +/*----- Licensing notice --------------------------------------------------* * * This file is part of the mLib utilities library. * @@ -15,57 +15,18 @@ * it under the terms of the GNU Library General Public License as * published by the Free Software Foundation; either version 2 of the * License, or (at your option) any later version. - * + * * mLib is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Library General Public License for more details. - * + * * You should have received a copy of the GNU Library General Public * License along with mLib; if not, write to the Free * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, * MA 02111-1307, USA. */ -/*----- Revision history --------------------------------------------------* - * - * $Log: dstr.h,v $ - * Revision 1.11 2000/06/17 10:37:39 mdw - * Add support for arena management. - * - * Revision 1.10 1999/12/22 15:39:51 mdw - * Fix argument reuse in DPUTS. - * - * Revision 1.9 1999/12/10 23:42:04 mdw - * Change header file guard names. - * - * Revision 1.8 1999/07/14 19:45:24 mdw - * Prevent some macros from re-evaluating their arguments. - * - * Revision 1.7 1999/05/21 22:12:12 mdw - * Fix the bugs in the new macros. (Whoops.) - * - * Revision 1.6 1999/05/21 08:38:14 mdw - * Add some more macros, particularly for creation and destruction. - * - * Revision 1.5 1999/05/13 22:47:57 mdw - * Misc documentation fixes. Change `-ise' to `-ize' throughout. - * - * Revision 1.4 1999/05/06 19:51:35 mdw - * Reformatted the LGPL notice a little bit. - * - * Revision 1.3 1999/05/05 18:50:31 mdw - * Change licensing conditions to LGPL. - * - * Revision 1.2 1998/12/15 23:53:23 mdw - * New functions `dstr_putf' and `dstr_vputf' which do `printf'-style - * formatting in a safe way. - * - * Revision 1.1.1.1 1998/06/17 23:44:42 mdw - * Initial version of mLib - * - */ - #ifndef MLIB_DSTR_H #define MLIB_DSTR_H @@ -242,7 +203,7 @@ extern void dstr_puts(dstr */*d*/, const char */*s*/); * * Arguments: @dstr *d@ = pointer to a dynamic string block * @const char *p@ = pointer to @printf@-style format string - * @va_list ap@ = argument handle + * @va_list *ap@ = argument handle * * Returns: The number of characters written to the string. * @@ -250,7 +211,7 @@ extern void dstr_puts(dstr */*d*/, const char */*s*/); * supplied functions with @printf@-style interfaces. */ -extern int dstr_vputf(dstr */*d*/, const char */*p*/, va_list /*ap*/); +extern int dstr_vputf(dstr */*d*/, const char */*p*/, va_list */*ap*/); /* --- @dstr_putf@ --- * *