chiark / gitweb /
Include types with tabulated function arguments and structure members.
[mLib] / man / str.3
index 969f021a11160fc67528200e7ff6b802e38ab2a2..1484fb576fd0f60b852cb578c534ef421a466db8 100644 (file)
--- a/man/str.3
+++ b/man/str.3
@@ -50,11 +50,11 @@ The function
 divides a string into whitespace-separated words.  The arguments are as
 follows:
 .TP
-.I p
+.BI "char *" p
 The address of the string to split.  The string is modified by having
 null terminators written after each word extracted.
 .TP
-.I v
+.BI "char *" v []
 The address of an array of pointers to characters.  This array will be
 filled in by
 .BR str_split :
@@ -62,12 +62,12 @@ the first entry will point to the first word extracted from the string,
 and so on.  If there aren't enough words in the string, the remaining
 array elements are filled with null pointers.
 .TP
-.I c
-The maxmimum number of words to extract; also, the number of elements in
+.BI "size_t " c
+The maximum number of words to extract; also, the number of elements in
 the array
 .IR v .
 .TP
-.I rest
+.BI "char **" rest
 The address of a pointer in which to store the address of the remainder
 of the string.  Leading whitespace is removed from the remainder before
 storing.  If the remainder string is empty, a null pointer is stored