OSDN Git Service

(split) LDP: Update original to LDP v3.52.
[linuxjm/LDP_man-pages.git] / original / man3 / strsep.3
index c64ea80..549857b 100644 (file)
@@ -48,23 +48,35 @@ Feature Test Macro Requirements for glibc (see
 .BR strsep ():
 _BSD_SOURCE
 .SH DESCRIPTION
-If \fI*stringp\fP is NULL, the
+If
+.I *stringp
+is NULL, the
 .BR strsep ()
 function returns NULL
 and does nothing else.
 Otherwise, this function finds the first token
-in the string \fI*stringp\fP, where tokens
-are delimited by symbols in the string \fIdelim\fP.
+in the string
+.IR *stringp ,
+where tokens
+are delimited by symbols in the string
+.IR delim .
 This token is terminated by overwriting the delimiter
 with a null byte (\(aq\\0\(aq)
-and \fI*stringp\fP is updated to point past the token.
+and
+.I *stringp
+is updated to point past the token.
 In case no delimiter was found, the token is taken to be
-the entire string \fI*stringp\fP, and \fI*stringp\fP is made NULL.
+the entire string
+.IR *stringp ,
+and
+.I *stringp
+is made NULL.
 .SH RETURN VALUE
 The
 .BR strsep ()
 function returns a pointer to the token,
-that is, it returns the original value of \fI*stringp\fP.
+that is, it returns the original value of
+.IR *stringp .
 .SH CONFORMING TO
 4.4BSD.
 .SH NOTES