X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/mLib/blobdiff_plain/484eed5d07c30d877e93e18bbab95f1ffbddaa24..d2a91066c99aebac0e651b09ffd699b17f156f94:/man/dspool.3 diff --git a/man/dspool.3 b/man/dspool.3 index 562cd79..bdf24a9 100644 --- a/man/dspool.3 +++ b/man/dspool.3 @@ -24,14 +24,14 @@ dspool \- pools of preallocated dynamic strings .\" .SH SYNOPSIS .nf -.B "#include +.B "#include " .BI "void dspool_create(dspool *" p ", size_t " isz ); .BI "void dspool_destroy(dspool *" p ); .BI "dstr *dspool_get(dspool *" p ); .BI "void dspool_put(dspool *" p ", dstr *" d ); -.BI "dstr *DSGET(dspool *" p ", d ); +.BI "void DSGET(dspool *" p ", " d ); .BI "void DSPUT(dspool *" p ", dstr *" d ); .fi .SH DESCRIPTION @@ -46,7 +46,7 @@ A pool is created by the function It is passed the address of a pool structure .I p and the initial size -.I izs +.I isz to allocate for new dynamic strings obtained from the pool. A newly created pool contains no strings. Once a pool is no longer required, the function