home *** CD-ROM | disk | FTP | other *** search
/ RISCWORLD 7 / RISCWORLD_VOL7.iso / Software / Issue6 / SDL.ZIP / !gcc / include / unixlib / bits / h / locale < prev    next >
Encoding:
Text File  |  2006-09-17  |  1.7 KB  |  60 lines

  1. /****************************************************************************
  2.  *
  3.  * $Source: $
  4.  * $Date: $
  5.  * $Revision: $
  6.  * $State: $
  7.  * $Author: $
  8.  *
  9.  ***************************************************************************/
  10.  
  11. /* File taken from glibc 2.3.2.
  12.  * Following changes were made:
  13.  *   <none>
  14.  */
  15.  
  16. /* Definition of locale category symbol values.
  17.    Copyright (C) 2001 Free Software Foundation, Inc.
  18.    This file is part of the GNU C Library.
  19.  
  20.    The GNU C Library is free software; you can redistribute it and/or
  21.    modify it under the terms of the GNU Lesser General Public
  22.    License as published by the Free Software Foundation; either
  23.    version 2.1 of the License, or (at your option) any later version.
  24.  
  25.    The GNU C Library is distributed in the hope that it will be useful,
  26.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  27.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  28.    Lesser General Public License for more details.
  29.  
  30.    You should have received a copy of the GNU Lesser General Public
  31.    License along with the GNU C Library; if not, write to the Free
  32.    Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  33.    02111-1307 USA.  */
  34.  
  35. #if !defined _LOCALE_H && !defined _LANGINFO_H
  36. # error "Never use <bits/locale.h> directly; include <locale.h> instead."
  37. #endif
  38.  
  39. #ifndef _BITS_LOCALE_H
  40. #define _BITS_LOCALE_H    1
  41.  
  42. enum
  43. {
  44.   __LC_CTYPE = 0,
  45.   __LC_NUMERIC = 1,
  46.   __LC_TIME = 2,
  47.   __LC_COLLATE = 3,
  48.   __LC_MONETARY = 4,
  49.   __LC_MESSAGES = 5,
  50.   __LC_ALL = 6,
  51.   __LC_PAPER = 7,
  52.   __LC_NAME = 8,
  53.   __LC_ADDRESS = 9,
  54.   __LC_TELEPHONE = 10,
  55.   __LC_MEASUREMENT = 11,
  56.   __LC_IDENTIFICATION = 12
  57. };
  58.  
  59. #endif    /* bits/locale.h */
  60.