chiark / gitweb /
New hex encoding stuff. Rename test programs.
[mLib] / man / dspool.3
index 562cd79a05ed36987e39f014518ed98a9c74e521..1b520c8e7b90e6a077e584c8912a3bbb7f384b62 100644 (file)
@@ -11,7 +11,7 @@
 .sp 1
 .fi
 ..
-.TH dspool 3 "20 June 1999" mLib
+.TH dspool 3 "20 June 1999" "Straylight/Edgeware" "mLib utilities library"
 .SH NAME
 dspool \- pools of preallocated dynamic strings
 .\" @dspool_create
@@ -24,14 +24,14 @@ dspool \- pools of preallocated dynamic strings
 .\"
 .SH SYNOPSIS
 .nf
-.B "#include <mLib/dspool.h>
+.B "#include <mLib/dspool.h>"
 
 .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