locale.h 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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 Library General Public License as
  6. published by the Free Software Foundation; either version 2 of the
  7. 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. Library General Public License for more details.
  12. You should have received a copy of the GNU Library General Public
  13. License along with the GNU C Library; see the file COPYING.LIB. If not,
  14. write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  15. Boston, MA 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 */