X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/mLib/blobdiff_plain/300a63912783f039c4df8be05542ce97786c3660..c6e0eaf00cd09a4e5237e70d8351049ec91d7653:/dstr.c diff --git a/dstr.c b/dstr.c index 7c03a3c..d15fba8 100644 --- a/dstr.c +++ b/dstr.c @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: dstr.c,v 1.11 1999/10/28 22:05:29 mdw Exp $ + * $Id: dstr.c,v 1.12 1999/12/10 23:42:04 mdw Exp $ * * Handle dynamically growing strings * @@ -30,6 +30,9 @@ /*----- Revision history --------------------------------------------------* * * $Log: dstr.c,v $ + * Revision 1.12 1999/12/10 23:42:04 mdw + * Change header file guard names. + * * Revision 1.11 1999/10/28 22:05:29 mdw * Modify and debug allocation routines. * @@ -111,7 +114,7 @@ void dstr_destroy(dstr *d) { DDESTROY(d); } /* --- @dstr_reset@ --- * * - * Arguments: @dstr *d@ = pointer to a dynaimc string block + * Arguments: @dstr *d@ = pointer to a dynamic string block * * Returns: --- *