]> git.ipfire.org Git - thirdparty/man-pages.git/blobdiff - man3/getgrent_r.3
Wrapped long lines, wrapped at sentence boundaries; stripped trailing
[thirdparty/man-pages.git] / man3 / getgrent_r.3
index 01d1a226e972371445294c5e44a0c6a0934ec487..043f8974bb4255f513fbb9785933fc312542934e 100644 (file)
@@ -71,9 +71,11 @@ The non-reentrant functions return a pointer to static storage,
 where this static storage contains further pointers to group
 name, password and members.
 The reentrant functions described here return all of that in
-caller-provided buffers. First of all there is the buffer
+caller-provided buffers.
+First of all there is the buffer
 .I gbuf
-that can hold a struct group. And next the buffer
+that can hold a struct group.
+And next the buffer
 .I buf
 of size
 .I buflen
@@ -96,7 +98,8 @@ is NULL.
 No more entries.
 .TP
 .B ERANGE
-Insufficient buffer space supplied. Try again with larger buffer.
+Insufficient buffer space supplied.
+Try again with larger buffer.
 .SH EXAMPLE
 .nf
 #define _GNU_SOURCE
@@ -104,8 +107,8 @@ Insufficient buffer space supplied. Try again with larger buffer.
 #include <stdio.h>
 #define BUFLEN 4096
 
-int 
-main(void) 
+int
+main(void)
 {
     struct group grp, *grpp;
     char buf[BUFLEN];