Print this page
Garrett's man page edits.

Split Close
Expand all
Collapse all
          --- old/usr/src/man/man3c/wctomb.3c
          +++ new/usr/src/man/man3c/wctomb.3c
   1    1  '\" te
        2 +.\" Copyright 2014 Garrett D'Amore <garrett@damore.org>
   2    3  .\"  Copyright (c) 1992, X/Open Company Limited  All Rights Reserved  Portions Copyright (c) 2002, Sun Microsystems, Inc.  All Rights Reserved
   3    4  .\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at
   4    5  .\" http://www.opengroup.org/bookstore/.
   5    6  .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html.
   6    7  .\"  This notice shall appear on any product containing this material.
   7    8  .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License").  You may not use this file except in compliance with the License.
   8    9  .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing.  See the License for the specific language governing permissions and limitations under the License.
   9   10  .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE.  If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner]
  10      -.TH WCTOMB 3C "Aug 14, 2002"
       11 +.TH WCTOMB 3C "Jun 25, 2014"
  11   12  .SH NAME
  12   13  wctomb, wctomb_l \- convert a wide-character code to a character
  13   14  .SH SYNOPSIS
  14   15  .LP
  15   16  .nf
  16   17  #include <stdlib.h>
  17   18  
  18   19  \fBint\fR \fBwctomb\fR(\fBchar *\fR\fIs\fR, \fBwchar_t\fR \fIwchar\fR);
  19      -\fBint\fR \fBwctomb_l\fR(\fBchar *\fR\fIs\fR, \fBwchar_t\fR \fIwchar\fR, \fBlocale_t\fR \fIloc\fR);
  20   20  .fi
       21 +.LP
       22 +.nf
       23 +#include <stdlib.h>
       24 +#include <xlocale.h>
  21   25  
       26 +\fBint\fR \fBwctomb_l\fR(\fBchar *\fR\fIs\fR, \fBwchar_t\fR \fIwchar\fR, \fBlocale_t\fR \fIloc\fR);
       27 +.fi
  22   28  .SH DESCRIPTION
  23      -.sp
  24   29  .LP
  25   30  The \fBwctomb()\fR function determines the number of bytes needed to represent
  26   31  the character corresponding to the wide-character code whose value is
  27   32  \fIwchar\fR. It stores the character representation (possibly multiple bytes)
  28   33  in the array object pointed to by \fIs\fR (if \fIs\fR is not a null pointer).
  29   34  At most \fBMB_CUR_MAX\fR bytes are stored.
  30      -.sp
  31   35  .LP
  32   36  A call with \fIs\fR as a null pointer causes this function to return \fB0\fR.
  33   37  The behavior of this function is affected by the \fBLC_CTYPE\fR category of the
  34   38  current locale.
  35      -.sp
  36   39  .LP
  37   40  The function \fBwctomb_l()\fR behaves identically to \fBwctomb()\fR, except
  38      -instead of operating in the current environemtn, it operates in the environment
       41 +instead of operating in the current locale, it operates in the locale
  39   42  specified by \fIloc\fR.
  40   43  .SH RETURN VALUES
  41      -.sp
  42   44  .LP
  43   45  If \fIs\fR is a null pointer, \fBwctomb()\fR returns \fB0\fR value. If \fIs\fR
  44   46  is not a null pointer, \fBwctomb()\fR returns \fB\(mi1\fR if the value of
  45   47  \fIwchar\fR does not correspond to a valid character, or returns the number of
  46   48  bytes that constitute the character corresponding to the value of \fIwchar\fR.
  47      -.sp
  48   49  .LP
  49   50  In no case will the value returned be greater than the value of the
  50   51  \fBMB_CUR_MAX\fR macro.
  51   52  .SH ERRORS
  52      -.sp
  53   53  .LP
  54   54  No errors are defined.
  55      -.SH USAGE
  56      -.sp
  57      -.LP
  58      -The \fBwctomb()\fR function can be used safely in a multithreaded application,
  59      -as long as \fBsetlocale\fR(3C) is not being called to change the locale.
  60   55  .SH ATTRIBUTES
  61      -.sp
  62   56  .LP
  63   57  See \fBattributes\fR(5) for descriptions of the following attributes:
  64      -.sp
  65      -
  66      -.sp
  67   58  .TS
  68   59  box;
  69   60  c | c
  70   61  l | l .
  71   62  ATTRIBUTE TYPE  ATTRIBUTE VALUE
  72   63  _
  73   64  CSI     Enabled
  74   65  _
  75      -Interface Stability     Standard
       66 +Interface Stability     See below.
  76   67  _
  77      -MT-Level        MT-Safe with exceptions
       68 +MT-Level        MT-Safe
  78   69  .TE
  79   70  
       71 +.LP
       72 +The \fBwctomb()\fR function is Standard.  The \fBwctomb_l()\fR function
       73 +is Uncommitted.
  80   74  .SH SEE ALSO
  81      -.sp
  82   75  .LP
  83      -\fBmblen\fR(3C), \fBmbstowcs\fR(3C), \fBmbtowc\fR(3C), \fBsetlocale\fR(3C),
       76 +\fBmblen\fR(3C), \fBmbstowcs\fR(3C), \fBmbtowc\fR(3C),
       77 +\fBnewlocale\fR(3C), \fBsetlocale\fR(3C), \fBuselocale\fR(3C),
  84   78  \fBwcstombs\fR(3C), \fBattributes\fR(5), \fBstandards\fR(5)
    
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX