locale.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

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