]> git.saurik.com Git - apple/libc.git/blob - include/xlocale/_stdio.h
Libc-391.tar.gz
[apple/libc.git] / include / xlocale / _stdio.h
1 /*
2 * Copyright (c) 2005 Apple Computer, Inc. All rights reserved.
3 *
4 * @APPLE_LICENSE_HEADER_START@
5 *
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. Please obtain a copy of the License at
10 * http://www.opensource.apple.com/apsl/ and read it before using this
11 * file.
12 *
13 * The Original Code and all software distributed under the License are
14 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
15 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
16 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
18 * Please see the License for the specific language governing rights and
19 * limitations under the License.
20 *
21 * @APPLE_LICENSE_HEADER_END@
22 */
23
24 #ifndef _XLOCALE__STDIO_H_
25 #define _XLOCALE__STDIO_H_
26
27 __BEGIN_DECLS
28 int asprintf_l(char **, locale_t, const char *, ...)
29 __DARWIN_LDBL_COMPAT2(asprintf_l);
30 int fprintf_l(FILE * __restrict, locale_t, const char * __restrict, ...)
31 __DARWIN_LDBL_COMPAT2(fprintf_l);
32 int fscanf_l(FILE * __restrict, locale_t, const char * __restrict, ...)
33 __DARWIN_LDBL_COMPAT2(fscanf_l);
34 int printf_l(locale_t, const char * __restrict, ...)
35 __DARWIN_LDBL_COMPAT2(printf_l);
36 int scanf_l(locale_t, const char * __restrict, ...)
37 __DARWIN_LDBL_COMPAT2(scanf_l);
38 int snprintf_l(char * __restrict, size_t, locale_t,
39 const char * __restrict, ...) __DARWIN_LDBL_COMPAT2(snprintf_l);
40 int sprintf_l(char * __restrict, locale_t, const char * __restrict, ...)
41 __DARWIN_LDBL_COMPAT2(sprintf_l);
42 int sscanf_l(const char * __restrict, locale_t, const char * __restrict,
43 ...) __DARWIN_LDBL_COMPAT2(sscanf_l);
44 int vasprintf_l(char **, locale_t, const char *, va_list)
45 __DARWIN_LDBL_COMPAT2(vasprintf_l);
46 int vfprintf_l(FILE * __restrict, locale_t, const char * __restrict,
47 va_list) __DARWIN_LDBL_COMPAT2(vfprintf_l);
48 int vfscanf_l(FILE * __restrict, locale_t, const char * __restrict,
49 va_list) __DARWIN_LDBL_COMPAT2(vfscanf_l);
50 int vprintf_l(locale_t, const char * __restrict, va_list)
51 __DARWIN_LDBL_COMPAT2(vprintf_l);
52 int vscanf_l(locale_t, const char * __restrict, va_list)
53 __DARWIN_LDBL_COMPAT2(vscanf_l);
54 int vsnprintf_l(char * __restrict, size_t, locale_t,
55 const char * __restrict, va_list)
56 __DARWIN_LDBL_COMPAT2(vsnprintf_l);
57 int vsprintf_l(char * __restrict, locale_t, const char * __restrict,
58 va_list) __DARWIN_LDBL_COMPAT2(vsprintf_l);
59 int vsscanf_l(const char * __restrict, locale_t, const char * __restrict,
60 va_list) __DARWIN_LDBL_COMPAT2(vsscanf_l);
61 __END_DECLS
62
63 #endif /* _XLOCALE__STDIO_H_ */