1231673Stheraven/*-
2231673Stheraven * Copyright (c) 2011, 2012 The FreeBSD Foundation
3231673Stheraven * All rights reserved.
4231673Stheraven *
5231673Stheraven * This software was developed by David Chisnall under sponsorship from
6231673Stheraven * the FreeBSD Foundation.
7231673Stheraven *
8231673Stheraven * Redistribution and use in source and binary forms, with or without
9231673Stheraven * modification, are permitted provided that the following conditions
10231673Stheraven * are met:
11231673Stheraven * 1. Redistributions of source code must retain the above copyright
12231673Stheraven *    notice, this list of conditions and the following disclaimer.
13231673Stheraven * 2. Redistributions in binary form must reproduce the above copyright
14231673Stheraven *    notice, this list of conditions and the following disclaimer in the
15231673Stheraven *    documentation and/or other materials provided with the distribution.
16231673Stheraven *
17231673Stheraven * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18231673Stheraven * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19231673Stheraven * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20231673Stheraven * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
21231673Stheraven * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22231673Stheraven * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23231673Stheraven * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24231673Stheraven * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25231673Stheraven * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26231673Stheraven * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27231673Stheraven * SUCH DAMAGE.
28231673Stheraven *
29231673Stheraven * $FreeBSD$
30231673Stheraven */
31231673Stheraven
32231673Stheraven#ifndef _LOCALE_T_DEFINED
33231673Stheraven#define _LOCALE_T_DEFINED
34231673Stheraventypedef struct	_xlocale *locale_t;
35231673Stheraven#endif
36231673Stheraven
37231673Stheraven/*
38231673Stheraven * This file is included from both locale.h and xlocale.h.  We need to expose
39231673Stheraven * the declarations unconditionally if we are included from xlocale.h, but only
40231673Stheraven * if we are in POSIX2008 mode if included from locale.h.
41231673Stheraven */
42231673Stheraven#ifndef _XLOCALE_LOCALE1_H
43231673Stheraven#define _XLOCALE_LOCALE1_H
44231673Stheraven
45231673Stheravensize_t	 strftime_l(char * __restrict, size_t, const char * __restrict,
46231673Stheraven	    const struct tm * __restrict, locale_t) __strftimelike(3, 0);
47231673Stheraven
48231673Stheraven#endif /* _XLOCALE_LOCALE1_H */
49231673Stheraven
50231673Stheraven#ifdef _XLOCALE_H_
51231673Stheraven#ifndef _XLOCALE_LOCALE2_H
52231673Stheraven#define _XLOCALE_LOCALE2_H
53231673Stheraven
54231673Stheravenchar	*strptime_l(const char * __restrict, const char * __restrict,
55231673Stheraven           struct tm * __restrict, locale_t);
56231673Stheraven
57231673Stheraven#endif /* _XLOCALE_LOCALE2_H */
58231673Stheraven#endif /* _XLOCALE_H_ */
59