1.\" $NetBSD: wctob.3,v 1.4 2004/01/24 16:58:54 wiz Exp $ 2.\" 3.\" Copyright (c)2003 Citrus Project, 4.\" All rights reserved. 5.\" 6.\" Redistribution and use in source and binary forms, with or without 7.\" modification, are permitted provided that the following conditions 8.\" are met: 9.\" 1. Redistributions of source code must retain the above copyright 10.\" notice, this list of conditions and the following disclaimer. 11.\" 2. Redistributions in binary form must reproduce the above copyright 12.\" notice, this list of conditions and the following disclaimer in the 13.\" documentation and/or other materials provided with the distribution. 14.\" 15.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 16.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 17.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 18.\" ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 19.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 20.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 21.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 22.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 23.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 24.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 25.\" SUCH DAMAGE. 26.\" 27.Dd March 3, 2003 28.Dt WCTOB 3 29.Os 30.\" ---------------------------------------------------------------------- 31.Sh NAME 32.Nm wctob 33.Nd convert a wide character to a single byte character 34.\" ---------------------------------------------------------------------- 35.Sh LIBRARY 36.Lb libc 37.\" ---------------------------------------------------------------------- 38.Sh SYNOPSIS 39.In wchar.h 40.Ft int 41.Fn wctob "wint_t wc" 42.\" ---------------------------------------------------------------------- 43.Sh DESCRIPTION 44The 45.Fn wctob 46function converts a wide character 47.Fa wc 48to a corresponding single byte character in the initial shift state of 49the current locale. 50.Pp 51The behaviour of 52.Fn wctob 53is affected by the 54.Dv LC_CTYPE 55category of the current locale. 56.\" ---------------------------------------------------------------------- 57.Sh RETURN VALUES 58The 59.Fn wctob 60function returns: 61.Bl -tag -width 012345678901 62.It Dv EOF 63If 64.Fa wc 65is 66.Dv WEOF 67or if 68.Fa wc 69does not correspond to a valid single byte character representation. 70.It (otherwise) 71A single byte character corresponding to 72.Fa wc . 73.El 74.\" ---------------------------------------------------------------------- 75.Sh ERRORS 76No errors are defined. 77.\" ---------------------------------------------------------------------- 78.Sh SEE ALSO 79.Xr btowc 3 , 80.Xr setlocale 3 , 81.Xr wcrtomb 3 82.\" ---------------------------------------------------------------------- 83.Sh STANDARDS 84The 85.Fn wctob 86function conforms to 87.St -isoC-amd1 . 88