summaryrefslogtreecommitdiffstats
path: root/man3/fgetws.3
diff options
context:
space:
mode:
Diffstat (limited to 'man3/fgetws.3')
-rw-r--r--man3/fgetws.353
1 files changed, 53 insertions, 0 deletions
diff --git a/man3/fgetws.3 b/man3/fgetws.3
new file mode 100644
index 000000000..b2b0eed90
--- /dev/null
+++ b/man3/fgetws.3
@@ -0,0 +1,53 @@
+.\" Copyright (c) Bruno Haible <haible@clisp.cons.org>
+.\"
+.\" 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.
+.\"
+.\" References consulted:
+.\" GNU glibc-2 source code and manual
+.\" Dinkumware C library reference http://www.dinkumware.com/
+.\" OpenGroup's Single Unix specification http://www.UNIX-systems.org/online.html
+.\" ISO/IEC 9899:1999
+.\"
+.\" Modified Tue Oct 16 23:18:40 BST 2001 by John Levon <moz@compsoc.man.ac.uk>
+.TH FGETWS 3 1999-07-25 "GNU" "Linux Programmer's Manual"
+.SH NAME
+fgetws \- read a wide character string from a FILE stream
+.SH SYNOPSIS
+.nf
+.B #include <wchar.h>
+.sp
+.BI "wchar_t *fgetws(wchar_t *" ws ", int " n ", FILE *" stream );
+.fi
+.SH DESCRIPTION
+The \fBfgetws\fP function is the wide-character equivalent of the \fBfgets\fP
+function. It reads a string of at most \fIn-1\fP wide characters into the
+wide-character array pointed to by \fIws\fP, and adds a terminating L'\\0'
+character. It stops reading wide characters after it has encountered and
+stored a newline wide character. It also stops when end of stream is reached.
+.PP
+The programmer must ensure that there is room for at least \fIn\fP wide
+characters at \fIws\fP.
+.PP
+For a non-locking counterpart, see
+.BR unlocked_stdio (3).
+.SH "RETURN VALUE"
+The \fBfgetws\fP function, if successful, returns \fIws\fP. If end of stream
+was already reached or if an error occurred, it returns NULL.
+.SH "CONFORMING TO"
+ISO/ANSI C, UNIX98
+.SH NOTES
+The behaviour of \fBfgetws\fP depends on the LC_CTYPE category of the
+current locale.
+.PP
+In the absence of additional information passed to the fopen call, it is
+reasonable to expect that \fBfgetws\fP will actually read a multibyte string
+from the stream and then convert it to a wide character string.
+.PP
+This function is unreliable, because it does not permit to deal properly with
+null wide characters that may be present in the input.
+.SH "SEE ALSO"
+.BR fgetwc (3),
+.BR unlocked_stdio (3)