]> git.ipfire.org Git - thirdparty/man-pages.git/blobdiff - man3/getline.3
Automated unformatting of parentheses using unformat_parens.sh
[thirdparty/man-pages.git] / man3 / getline.3
index 328fd835aa0562b41a743f552f530191e02e3108..ee7822f3b9abc3a07bde4fcad4dab5d372982782 100644 (file)
@@ -33,7 +33,7 @@ getline, getdelim \- delimited string input
 .nl
 .BI "ssize_t getdelim(char **" lineptr ", size_t *" n ", int " delim ", FILE *" stream );
 .SH DESCRIPTION
-.B getline()
+.BR getline ()
 reads an entire line, storing the address of the buffer containing
 the text into
 .IR "*lineptr" .
@@ -47,7 +47,7 @@ If
 is
 .BR "NULL" ,
 the
-.BR getline()
+.BR getline ()
 routine will allocate a buffer for containing the line, which must be freed
 by the user program.
 Alternatively, before calling
@@ -58,7 +58,7 @@ can contain a pointer to a
 buffer
 .IR "*n"
 bytes in size. If the buffer is not large enough to hold the line read in,
-.B getline()
+.BR getline ()
 resizes the buffer to fit with
 .BR "realloc()" ,
 updating
@@ -71,7 +71,7 @@ and
 .IR "*n"
 will be updated to reflect the buffer address and size respectively.
 
-.BR getdelim()
+.BR getdelim ()
 works like
 .BR "getline()" ,
 except a line delimiter other than newline can be specified as the