From e49a7995d5b388e644d60bfb3422252a686cabce Mon Sep 17 00:00:00 2001 Message-Id: From: Mark Wooding Date: Fri, 22 Oct 1999 22:44:02 +0000 Subject: [PATCH] Document DSTR_INIT. Organization: Straylight/Edgeware From: mdw --- man/dstr.3 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/man/dstr.3 b/man/dstr.3 index 2ef8300..c60e566 100644 --- a/man/dstr.3 +++ b/man/dstr.3 @@ -36,6 +36,7 @@ dstr \- a simple dynamic string type .\" @dstr_putline .\" @dstr_write .\" +.\" @DSTR_INIT .\" @DCREATE .\" @DDESTROY .\" @DRESET @@ -68,6 +69,7 @@ dstr \- a simple dynamic string type .BI "int dstr_putline(dstr *" d ", FILE *" fp ); .BI "size_t dstr_write(const dstr *" d ", FILE *" fp ); +.BI "dstr " d " = DSTR_INIT;" .BI "void DCREATE(dstr *" d ); .BI "void DDESTROY(dstr *" d ); .BI "void DRESET(dstr *" d ); -- [mdw]