Set up the data structures for vDSO in libc.a
[glibc.git] / stdlib / strfmon.c
blob5fcd30fecfd753389e060ca7e7bb4dd10ab231cf
1 /* Formatting a monetary value according to the current locale.
2 Copyright (C) 1996-2001, 2002, 2003, 2004, 2006
3 Free Software Foundation, Inc.
4 This file is part of the GNU C Library.
5 Contributed by Ulrich Drepper <drepper@cygnus.com>
6 and Jochen Hein <Jochen.Hein@informatik.TU-Clausthal.de>, 1996.
8 The GNU C Library is free software; you can redistribute it and/or
9 modify it under the terms of the GNU Lesser General Public
10 License as published by the Free Software Foundation; either
11 version 2.1 of the License, or (at your option) any later version.
13 The GNU C Library is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 Lesser General Public License for more details.
18 You should have received a copy of the GNU Lesser General Public
19 License along with the GNU C Library; if not, see
20 <http://www.gnu.org/licenses/>. */
22 #include <monetary.h>
23 #include <stdarg.h>
24 #include <locale/localeinfo.h>
25 #include <math_ldbl_opt.h>
27 ssize_t
28 __strfmon (char *s, size_t maxsize, const char *format, ...)
30 va_list ap;
32 va_start (ap, format);
34 ssize_t res = __vstrfmon_l (s, maxsize, _NL_CURRENT_LOCALE, format, ap);
36 va_end (ap);
38 return res;
40 ldbl_strong_alias (__strfmon, strfmon)