X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/mLib/blobdiff_plain/300a63912783f039c4df8be05542ce97786c3660..c6e0eaf00cd09a4e5237e70d8351049ec91d7653:/dstr.h diff --git a/dstr.h b/dstr.h index 3ef27ea..cde6b6f 100644 --- a/dstr.h +++ b/dstr.h @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: dstr.h,v 1.8 1999/07/14 19:45:24 mdw Exp $ + * $Id: dstr.h,v 1.9 1999/12/10 23:42:04 mdw Exp $ * * Handle dynamically growing strings * @@ -30,6 +30,9 @@ /*----- Revision history --------------------------------------------------* * * $Log: dstr.h,v $ + * 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. * @@ -57,8 +60,8 @@ * */ -#ifndef DSTR_H -#define DSTR_H +#ifndef MLIB_DSTR_H +#define MLIB_DSTR_H #ifdef __cplusplus extern "C" { @@ -130,7 +133,7 @@ extern void dstr_destroy(dstr */*d*/); /* --- @dstr_reset@ --- * * - * Arguments: @dstr *d@ = pointer to a dynaimc string block + * Arguments: @dstr *d@ = pointer to a dynamic string block * * Returns: --- *