OSDN Git Service

(split) LDP: Update original to LDP v3.50.
[linuxjm/LDP_man-pages.git] / original / man3 / wcstok.3
index 6f8ee0a..52fbbfd 100644 (file)
@@ -1,9 +1,11 @@
 .\" Copyright (c) Bruno Haible <haible@clisp.cons.org>
 .\"
+.\" %%%LICENSE_START(GPLv2+_DOC_ONEPARA)
 .\" This is free documentation; you can redistribute it and/or
 .\" modify it under the terms of the GNU General Public License as
 .\" published by the Free Software Foundation; either version 2 of
 .\" the License, or (at your option) any later version.
+.\" %%%LICENSE_END
 .\"
 .\" References consulted:
 .\"   GNU glibc-2 source code and manual
@@ -11,7 +13,7 @@
 .\"   OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html
 .\"   ISO/IEC 9899:1999
 .\"
-.TH WCSTOK 3  1999-07-25 "GNU" "Linux Programmer's Manual"
+.TH WCSTOK 3  2011-09-28 "GNU" "Linux Programmer's Manual"
 .SH NAME
 wcstok \- split wide-character string into tokens
 .SH SYNOPSIS
@@ -49,15 +51,15 @@ Otherwise, the
 function recognizes the beginning of a token
 and returns a pointer to it, but before doing that, it zero-terminates the
 token by replacing the next wide-character which occurs in \fIdelim\fP with
-a L\(aq\\0\(aq character,
+a null wide character (L\(aq\\0\(aq),
 and it updates \fI*ptr\fP so that subsequent calls will
 continue searching after the end of recognized token.
-.SH "RETURN VALUE"
+.SH RETURN VALUE
 The
 .BR wcstok ()
 function returns a pointer to the next token,
 or NULL if no further token was found.
-.SH "CONFORMING TO"
+.SH CONFORMING TO
 C99.
 .SH NOTES
 The original \fIwcs\fP wide-character string is destructively modified during
@@ -75,6 +77,6 @@ for (token = wcstok(wcs, " \\t\\n", &state);
     ...
 }
 .fi
-.SH "SEE ALSO"
+.SH SEE ALSO
 .BR strtok (3),
 .BR wcschr (3)