X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/mLib/blobdiff_plain/20eb516fdebd2fb901e6a09ffa7e741cfb8e3a83..c2168cf64919e11d6ed71bb3477a75bcefd89cf6:/dstr.h diff --git a/dstr.h b/dstr.h index 538dd33..4272dd9 100644 --- a/dstr.h +++ b/dstr.h @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: dstr.h,v 1.11 2000/06/17 10:37:39 mdw Exp $ + * $Id: dstr.h,v 1.12 2002/01/13 13:30:48 mdw Exp $ * * Handle dynamically growing strings * @@ -30,6 +30,9 @@ /*----- Revision history --------------------------------------------------* * * $Log: dstr.h,v $ + * Revision 1.12 2002/01/13 13:30:48 mdw + * Change interface for @dstr_vputf@. + * * Revision 1.11 2000/06/17 10:37:39 mdw * Add support for arena management. * @@ -242,7 +245,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 +253,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@ --- * *