1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause-FreeBSD 3 * 4 * Copyright (c) 2011, 2012 The FreeBSD Foundation 5 * All rights reserved. 6 * 7 * This software was developed by David Chisnall under sponsorship from 8 * the FreeBSD Foundation. 9 * 10 * Redistribution and use in source and binary forms, with or without 11 * modification, are permitted provided that the following conditions 12 * are met: 13 * 1. Redistributions of source code must retain the above copyright 14 * notice, this list of conditions and the following disclaimer. 15 * 2. Redistributions in binary form must reproduce the above copyright 16 * notice, this list of conditions and the following disclaimer in the 17 * documentation and/or other materials provided with the distribution. 18 * 19 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 22 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 25 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29 * SUCH DAMAGE. 30 * 31 * $FreeBSD$ 32 */ 33 34 #ifndef _XLOCALE_H_ 35 #define _XLOCALE_H_ 36 37 #include <locale.h> 38 __BEGIN_DECLS 39 #include <xlocale/_locale.h> 40 41 #ifdef _STRING_H_ 42 #include <xlocale/_string.h> 43 #endif 44 45 #ifdef _INTTYPES_H_ 46 #include <xlocale/_inttypes.h> 47 #endif 48 49 #ifdef _MONETARY_H_ 50 #include <xlocale/_monetary.h> 51 #endif 52 53 #ifdef _STDLIB_H_ 54 #include <xlocale/_stdlib.h> 55 #endif 56 57 #ifdef _TIME_H_ 58 #include <xlocale/_time.h> 59 #endif 60 61 #ifdef _LANGINFO_H_ 62 #include <xlocale/_langinfo.h> 63 #endif 64 65 #ifdef _CTYPE_H_ 66 #include <xlocale/_ctype.h> 67 #endif 68 69 #ifdef _WCTYPE_H_ 70 #define _XLOCALE_WCTYPES 1 71 #include <xlocale/_ctype.h> 72 #endif 73 74 #ifdef _STDIO_H_ 75 #include <xlocale/_stdio.h> 76 #endif 77 78 #ifdef _WCHAR_H_ 79 #include <xlocale/_wchar.h> 80 #endif 81 82 83 84 struct lconv *localeconv_l(locale_t); 85 __END_DECLS 86 87 #endif 88