]>
git.saurik.com Git - apple/libc.git/blob - include/secure/_stdio.h
2 * Copyright (c) 2007, 2010 Apple Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
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
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.
21 * @APPLE_LICENSE_HEADER_END@
25 #error error "Never use <secure/_stdio.h> directly; include <stdio.h> instead."
28 #ifndef _SECURE__STDIO_H_
29 #define _SECURE__STDIO_H_
31 #include <secure/_common.h>
33 #if _USE_FORTIFY_LEVEL > 0
36 #define _undef__has_builtin
37 #define __has_builtin(x) 0
40 /* sprintf, vsprintf, snprintf, vsnprintf */
41 #if __has_builtin(__builtin___sprintf_chk) || defined(__GNUC__)
42 extern int __sprintf_chk (char * __restrict
, int, size_t,
43 const char * __restrict
, ...);
46 #define sprintf(str, ...) \
47 __builtin___sprintf_chk (str, 0, __darwin_obsz(str), __VA_ARGS__)
50 #if __DARWIN_C_LEVEL >= 200112L
51 #if __has_builtin(__builtin___snprintf_chk) || defined(__GNUC__)
52 extern int __snprintf_chk (char * __restrict
, size_t, int, size_t,
53 const char * __restrict
, ...);
56 #define snprintf(str, len, ...) \
57 __builtin___snprintf_chk (str, len, 0, __darwin_obsz(str), __VA_ARGS__)
60 #if __has_builtin(__builtin___vsprintf_chk) || defined(__GNUC__)
61 extern int __vsprintf_chk (char * __restrict
, int, size_t,
62 const char * __restrict
, va_list);
65 #define vsprintf(str, format, ap) \
66 __builtin___vsprintf_chk (str, 0, __darwin_obsz(str), format, ap)
69 #if __has_builtin(__builtin___vsnprintf_chk) || defined(__GNUC__)
70 extern int __vsnprintf_chk (char * __restrict
, size_t, int, size_t,
71 const char * __restrict
, va_list);
74 #define vsnprintf(str, len, format, ap) \
75 __builtin___vsnprintf_chk (str, len, 0, __darwin_obsz(str), format, ap)
78 #endif /* __DARWIN_C_LEVEL >= 200112L */
80 #ifdef _undef__has_builtin
81 #undef _undef__has_builtin
85 #endif /* _USE_FORTIFY_LEVEL > 0 */
86 #endif /* _SECURE__STDIO_H_ */