stdio2.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:3k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* Checking macros for stdio functions.
  2.    Copyright (C) 2004 Free Software Foundation, Inc.
  3.    This file is part of the GNU C Library.
  4.    The GNU C Library is free software; you can redistribute it and/or
  5.    modify it under the terms of the GNU Lesser General Public
  6.    License as published by the Free Software Foundation; either
  7.    version 2.1 of the License, or (at your option) any later version.
  8.    The GNU C Library is distributed in the hope that it will be useful,
  9.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  11.    Lesser General Public License for more details.
  12.    You should have received a copy of the GNU Lesser General Public
  13.    License along with the GNU C Library; if not, write to the Free
  14.    Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  15.    02111-1307 USA.  */
  16. #ifndef _STDIO_H
  17. # error "Never include <bits/stdio2.h> directly; use <stdio.h> instead."
  18. #endif
  19. extern int __sprintf_chk (char *__restrict __s, int __flag, size_t __slen,
  20.   __const char *__restrict __format, ...) __THROW;
  21. extern int __vsprintf_chk (char *__restrict __s, int __flag, size_t __slen,
  22.    __const char *__restrict __format,
  23.    _G_va_list __ap) __THROW;
  24. #define sprintf(str, ...) 
  25.   __builtin___sprintf_chk (str, __USE_FORTIFY_LEVEL - 1, __bos (str), 
  26.    __VA_ARGS__)
  27. #define vsprintf(str, fmt, ap) 
  28.   __builtin___vsprintf_chk (str, __USE_FORTIFY_LEVEL - 1, __bos (str), fmt, ap)
  29. #if defined __USE_BSD || defined __USE_ISOC99 || defined __USE_UNIX98
  30. extern int __snprintf_chk (char *__restrict __s, size_t __n, int __flag,
  31.    size_t __slen, __const char *__restrict __format,
  32.    ...) __THROW;
  33. extern int __vsnprintf_chk (char *__restrict __s, size_t __n, int __flag,
  34.     size_t __slen, __const char *__restrict __format,
  35.     _G_va_list __ap) __THROW;
  36. # define snprintf(str, len, ...) 
  37.   __builtin___snprintf_chk (str, len, __USE_FORTIFY_LEVEL - 1, __bos (str), 
  38.     __VA_ARGS__)
  39. # define vsnprintf(str, len, fmt, ap) 
  40.   __builtin___vsnprintf_chk (str, len, __USE_FORTIFY_LEVEL - 1, __bos (str), 
  41.      fmt, ap)
  42. #endif      
  43. #if __USE_FORTIFY_LEVEL > 1
  44. extern int __fprintf_chk (FILE *__restrict __stream, int __flag,
  45.   __const char *__restrict __format, ...);
  46. extern int __printf_chk (int __flag, __const char *__restrict __format, ...);
  47. extern int __vfprintf_chk (FILE *__restrict __stream, int __flag,
  48.    __const char *__restrict __format, _G_va_list __ap);
  49. extern int __vprintf_chk (int __flag, __const char *__restrict __format,
  50.   _G_va_list __ap);
  51. # define printf(...) 
  52.   __printf_chk (__USE_FORTIFY_LEVEL - 1, __VA_ARGS__)
  53. # define fprintf(stream, ...) 
  54.   __fprintf_chk (stream, __USE_FORTIFY_LEVEL - 1, __VA_ARGS__)
  55. # define vprintf(format, ap) 
  56.   __vprintf_chk (__USE_FORTIFY_LEVEL - 1, format, ap)
  57. # define vfprintf(stream, format, ap) 
  58.   __vfprintf_chk (stream, __USE_FORTIFY_LEVEL - 1, format, ap)
  59. #endif
  60. extern char *__gets_chk (char *__str, size_t);
  61. #define gets(__str) 
  62.   ((__bos (__str) == (size_t) -1)
  63.    ? (gets) (__str) : __gets_chk (__str, __bos (__str)))