Print this page
Garrett's man page edits.

Split Close
Expand all
Collapse all
          --- old/usr/src/man/man3head/locale.h.3head
          +++ new/usr/src/man/man3head/locale.h.3head
   1    1  '\" te
   2    2  .\" Copyright (c) 2001, The IEEE and The Open Group. All Rights Reserved. Portions Copyright (c) 2004, Sun Microsystems, Inc. All Rights Reserved.
   3    3  .\" Copyright (c) 2014, Joyent, Inc.   All rights reserved.
        4 +.\" Copyright 2014 Garrett D'Amore <garrett@damore.org>
   4    5  .\" 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
   5    6  .\" http://www.opengroup.org/bookstore/.
   6    7  .\" 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.
   7    8  .\"  This notice shall appear on any product containing this material.
   8    9  .\" 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.
   9   10  .\" 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.
  10   11  .\" 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]
  11      -.TH LOCALE.H 3HEAD "Sep 10, 2004"
       12 +.TH LOCALE.H 3HEAD "Jun 23, 2004"
  12   13  .SH NAME
  13   14  locale.h, locale \- category macros
  14   15  .SH SYNOPSIS
  15   16  .LP
  16   17  .nf
  17   18  #include <\fBlocale.h\fR>
  18   19  .fi
  19      -
  20   20  .SH DESCRIPTION
  21      -.sp
  22   21  .LP
  23   22  The <\fBlocale.h\fR> header provides a definition for the \fBlconv\fR
  24   23  structure, which includes the following members. (See the definition of
  25   24  \fBLC_MONETARY\fR in \fBlocale\fR(5).)
  26   25  .sp
  27   26  .in +2
  28   27  .nf
  29   28  char         *currency_symbol
  30   29  char         *decimal_point
  31   30  char         frac_digits
↓ open down ↓ 13 lines elided ↑ open up ↑
  45   44  char         n_cs_precedes
  46   45  char         n_sep_by_space
  47   46  char         n_sign_posn
  48   47  char         *positive_sign
  49   48  char         p_cs_precedes
  50   49  char         p_sep_by_space
  51   50  char         p_sign_posn
  52   51  char         *thousands_sep
  53   52  .fi
  54   53  .in -2
  55      -
  56      -.sp
  57   54  .LP
  58   55  The <\fBlocale.h\fR> header defines \fINULL\fR (as defined in <\fBstddef.h\fR>)
  59   56  and the following as macros:
  60   57  .sp
  61   58  .in +2
  62   59  .nf
  63   60  LC_ALL
  64   61  LC_COLLATE
  65   62  LC_CTYPE
  66   63  LC_MESSAGES
  67   64  LC_MONETARY
  68   65  LC_NUMERIC
  69   66  LC_TIME
  70   67  .fi
  71   68  .in -2
  72      -
  73      -.sp
  74   69  .LP
  75   70  The preceding expand to distinct integer constant expressions, for use as the
  76   71  first argument to the \fBsetlocale()\fR function. See \fBsetlocale\fR(3C).
       72 +.LP
       73 +The <\fBlocale.h\fR> header also defines the following macros, for use with
       74 +\fBnewlocale\fR(3C):
  77   75  .sp
       76 +.in +2
       77 +.nf
       78 +LC_ALL_MASK
       79 +LC_COLLATE_MASK
       80 +LC_CTYPE_MASK
       81 +LC_MESSAGES_MASK
       82 +LC_MONETARY_MASK
       83 +LC_NUMERIC_MASK
       84 +LC_TIME_MASK
       85 +.fi
       86 +.in -2
  78   87  .LP
  79   88  In addition, to facilitate the use of per-thread locales with the
  80   89  .BR uselocale (3C)
  81   90  function, the
  82   91  .RB < locale.h >
  83   92  header defines the following type and macro:
  84   93  .sp
  85   94  .in +2
  86   95  .nf
  87   96  locale_t
↓ open down ↓ 14 lines elided ↑ open up ↑
 102  111  .fi
 103  112  .in -2
 104  113  .sp
 105  114  .RS 6n
 106  115  A macro which expands to a
 107  116  .B locale_t
 108  117  that represents the current global locale as set by
 109  118  .BR setlocale (3C).
 110  119  .RE
 111  120  
 112      -.sp
 113  121  .LP
 114  122  Additional macro definitions, beginning with the characters \fBLC_\fR and an
 115  123  uppercase letter, can also be specified here.
 116  124  .SH ATTRIBUTES
 117      -.sp
 118  125  .LP
 119  126  See \fBattributes\fR(5) for descriptions of the following attributes:
 120      -.sp
 121      -
 122      -.sp
 123  127  .TS
 124  128  box;
 125  129  c | c
 126  130  l | l .
 127  131  ATTRIBUTE TYPE  ATTRIBUTE VALUE
 128  132  _
 129  133  Interface Stability     Standard
 130  134  .TE
 131  135  
 132  136  .SH SEE ALSO
 133  137  .sp
 134  138  .LP
 135  139  .BR newlocale (3C),
 136  140  .BR setlocale (3C),
 137  141  .BR uselocale (3C),
 138  142  .BR localeconv (3C),
 139  143  .BR stddef.h (3HEAD),
 140  144  .BR attributes (5),
 141  145  .BR locale (5),
 142  146  .BR standards (5)
    
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX