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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* Header file for monetary value formatting functions.
  2.    Copyright (C) 1996,97,98,99,2000,02 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. #ifndef _MONETARY_H
  17. #define _MONETARY_H 1
  18. #include <features.h>
  19. /* Get needed types.  */
  20. #define __need_size_t
  21. #include <stddef.h>
  22. #include <bits/types.h>
  23. #ifndef __ssize_t_defined
  24. typedef __ssize_t ssize_t;
  25. # define __ssize_t_defined
  26. #endif
  27. __BEGIN_DECLS
  28. /* Formatting a monetary value according to the current locale.  */
  29. extern ssize_t strfmon (char *__restrict __s, size_t __maxsize,
  30. __const char *__restrict __format, ...)
  31.      __THROW __attribute_format_strfmon__ (3, 4);
  32. #ifdef __USE_GNU
  33. # include <xlocale.h>
  34. /* Formatting a monetary value according to the current locale.  */
  35. extern ssize_t strfmon_l (char *__restrict __s, size_t __maxsize,
  36.   __locale_t loc,
  37.   __const char *__restrict __format, ...)
  38.      __THROW __attribute_format_strfmon__ (4, 5);
  39. #endif
  40. __END_DECLS
  41. #endif /* monetary.h */