]>
Commit | Line | Data |
---|---|---|
9385eb3d A |
1 | .\" $NetBSD: ungetwc.3,v 1.3 2002/02/07 07:00:27 ross Exp $ |
2 | .\" | |
5b2abdfb | 3 | .\" Copyright (c) 1990, 1991, 1993 |
e9ce8d39 A |
4 | .\" The Regents of the University of California. All rights reserved. |
5 | .\" | |
5b2abdfb A |
6 | .\" This code is derived from software contributed to Berkeley by |
7 | .\" Chris Torek and the American National Standards Committee X3, | |
8 | .\" on Information Processing Systems. | |
9 | .\" | |
e9ce8d39 A |
10 | .\" Redistribution and use in source and binary forms, with or without |
11 | .\" modification, are permitted provided that the following conditions | |
12 | .\" are met: | |
13 | .\" 1. Redistributions of source code must retain the above copyright | |
14 | .\" notice, this list of conditions and the following disclaimer. | |
15 | .\" 2. Redistributions in binary form must reproduce the above copyright | |
16 | .\" notice, this list of conditions and the following disclaimer in the | |
17 | .\" documentation and/or other materials provided with the distribution. | |
e9ce8d39 A |
18 | .\" 4. Neither the name of the University nor the names of its contributors |
19 | .\" may be used to endorse or promote products derived from this software | |
20 | .\" without specific prior written permission. | |
21 | .\" | |
22 | .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | |
23 | .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | |
24 | .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | |
25 | .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | |
26 | .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | |
27 | .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | |
28 | .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | |
29 | .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | |
30 | .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | |
31 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | |
32 | .\" SUCH DAMAGE. | |
33 | .\" | |
5b2abdfb | 34 | .\" @(#)ungetc.3 8.1 (Berkeley) 6/4/93 |
1f2f436a | 35 | .\" $FreeBSD: src/lib/libc/stdio/ungetwc.3,v 1.6 2007/01/09 00:28:07 imp Exp $ |
e9ce8d39 | 36 | .\" |
3d9156a7 | 37 | .Dd March 3, 2004 |
9385eb3d | 38 | .Dt UNGETWC 3 |
e9ce8d39 A |
39 | .Os |
40 | .Sh NAME | |
ad3c9f2a A |
41 | .Nm ungetwc , |
42 | .Nm ungetwc_l | |
3d9156a7 | 43 | .Nd un-get wide character from input stream |
e9ce8d39 A |
44 | .Sh LIBRARY |
45 | .Lb libc | |
46 | .Sh SYNOPSIS | |
5b2abdfb | 47 | .In stdio.h |
9385eb3d A |
48 | .In wchar.h |
49 | .Ft wint_t | |
ad3c9f2a A |
50 | .Fo ungetwc |
51 | .Fa "wint_t wc" | |
52 | .Fa "FILE *stream" | |
53 | .Fc | |
54 | .In stdio.h | |
55 | .In wchar.h | |
56 | .In xlocale.h | |
57 | .Ft wint_t | |
58 | .Fo ungetwc_l | |
59 | .Fa "wint_t wc" | |
60 | .Fa "FILE *stream" | |
61 | .Fa "locale_t loc" | |
62 | .Fc | |
e9ce8d39 A |
63 | .Sh DESCRIPTION |
64 | The | |
9385eb3d | 65 | .Fn ungetwc |
3d9156a7 | 66 | function pushes the wide character |
9385eb3d A |
67 | .Fa wc |
68 | (converted to an | |
69 | .Vt wchar_t ) | |
5b2abdfb A |
70 | back onto the input stream pointed to by |
71 | .Fa stream . | |
ad3c9f2a A |
72 | The pushed-backed wide characters will be returned (in reverse order) |
73 | by subsequent reads on the stream. | |
74 | A successful intervening call to one of the file | |
9385eb3d A |
75 | positioning functions |
76 | .Xr fseek 3 , | |
5b2abdfb A |
77 | .Xr fsetpos 3 , |
78 | or | |
ad3c9f2a A |
79 | .Xr rewind 3 , |
80 | using the same stream, | |
81 | will discard the pushed-back wide characters. | |
5b2abdfb | 82 | .Pp |
ad3c9f2a A |
83 | Only one wide character of push-back is guaranteed, |
84 | but as long as there is sufficient memory, | |
85 | an effectively infinite amount of push-back is allowed. | |
5b2abdfb A |
86 | .Pp |
87 | If a character is successfully pushed-back, | |
88 | the end-of-file indicator for the stream is cleared. | |
ad3c9f2a A |
89 | .Pp |
90 | Although the | |
91 | .Fn ungetwc | |
92 | function uses the current locale, the | |
93 | .Fn ungetwc_l | |
94 | function may be passed a locale directly. See | |
95 | .Xr xlocale 3 | |
96 | for more information. | |
e9ce8d39 | 97 | .Sh RETURN VALUES |
5b2abdfb | 98 | The |
9385eb3d A |
99 | .Fn ungetwc |
100 | function | |
101 | returns | |
3d9156a7 | 102 | the wide character pushed-back after the conversion, or |
9385eb3d | 103 | .Dv WEOF |
5b2abdfb A |
104 | if the operation fails. |
105 | If the value of the argument | |
106 | .Fa c | |
107 | character equals | |
9385eb3d | 108 | .Dv WEOF , |
5b2abdfb | 109 | the operation will fail and the stream will remain unchanged. |
e9ce8d39 | 110 | .Sh SEE ALSO |
5b2abdfb | 111 | .Xr fseek 3 , |
ad3c9f2a A |
112 | .Xr getwc 3 , |
113 | .Xr xlocale 3 | |
5b2abdfb | 114 | .Sh STANDARDS |
e9ce8d39 | 115 | The |
9385eb3d | 116 | .Fn ungetwc |
5b2abdfb | 117 | function conforms to |
9385eb3d | 118 | .St -isoC-99 . |