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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* Optimizing macros and inline functions for stdio functions.
  2.    Copyright (C) 1998, 2000, 2001, 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/stdio.h> directly; use <stdio.h> instead."
  18. #endif
  19. #ifdef __cplusplus
  20. # define __STDIO_INLINE inline
  21. #else
  22. # define __STDIO_INLINE extern __inline
  23. #endif
  24. #ifdef __USE_EXTERN_INLINES
  25. /* Write formatted output to stdout from argument list ARG.  */
  26. __STDIO_INLINE int
  27. vprintf (__const char *__restrict __fmt, _G_va_list __arg)
  28. {
  29.   return vfprintf (stdout, __fmt, __arg);
  30. }
  31. /* Read a character from stdin.  */
  32. __STDIO_INLINE int
  33. getchar (void)
  34. {
  35.   return _IO_getc (stdin);
  36. }
  37. # if defined __USE_POSIX || defined __USE_MISC
  38. /* This is defined in POSIX.1:1996.  */
  39. __STDIO_INLINE int
  40. getc_unlocked (FILE *__fp)
  41. {
  42.   return _IO_getc_unlocked (__fp);
  43. }
  44. /* This is defined in POSIX.1:1996.  */
  45. __STDIO_INLINE int
  46. getchar_unlocked (void)
  47. {
  48.   return _IO_getc_unlocked (stdin);
  49. }
  50. # endif /* POSIX || misc */
  51. /* Write a character to stdout.  */
  52. __STDIO_INLINE int
  53. putchar (int __c)
  54. {
  55.   return _IO_putc (__c, stdout);
  56. }
  57. # ifdef __USE_MISC
  58. /* Faster version when locking is not necessary.  */
  59. __STDIO_INLINE int
  60. fputc_unlocked (int __c, FILE *__stream)
  61. {
  62.   return _IO_putc_unlocked (__c, __stream);
  63. }
  64. # endif /* misc */
  65. # if defined __USE_POSIX || defined __USE_MISC
  66. /* This is defined in POSIX.1:1996.  */
  67. __STDIO_INLINE int
  68. putc_unlocked (int __c, FILE *__stream)
  69. {
  70.   return _IO_putc_unlocked (__c, __stream);
  71. }
  72. /* This is defined in POSIX.1:1996.  */
  73. __STDIO_INLINE int
  74. putchar_unlocked (int __c)
  75. {
  76.   return _IO_putc_unlocked (__c, stdout);
  77. }
  78. # endif /* POSIX || misc */
  79. # ifdef __USE_GNU
  80. /* Like `getdelim', but reads up to a newline.  */
  81. __STDIO_INLINE _IO_ssize_t
  82. getline (char **__lineptr, size_t *__n, FILE *__stream)
  83. {
  84.   return __getdelim (__lineptr, __n, 'n', __stream);
  85. }
  86. # endif /* GNU */
  87. # ifdef __USE_MISC
  88. /* Faster versions when locking is not required.  */
  89. __STDIO_INLINE int
  90. __NTH (feof_unlocked (FILE *__stream))
  91. {
  92.   return _IO_feof_unlocked (__stream);
  93. }
  94. /* Faster versions when locking is not required.  */
  95. __STDIO_INLINE int
  96. __NTH (ferror_unlocked (FILE *__stream))
  97. {
  98.   return _IO_ferror_unlocked (__stream);
  99. }
  100. # endif /* misc */
  101. #endif /* Use extern inlines.  */
  102. #if defined __USE_MISC && defined __GNUC__ && defined __OPTIMIZE__
  103. /* Perform some simple optimizations.  */
  104. # define fread_unlocked(ptr, size, n, stream) 
  105.   (__extension__ ((__builtin_constant_p (size) && __builtin_constant_p (n)    
  106.    && (size_t) (size) * (size_t) (n) <= 8       
  107.    && (size_t) (size) != 0)       
  108.   ? ({ char *__ptr = (char *) (ptr);       
  109.        FILE *__stream = (stream);       
  110.        size_t __cnt;       
  111.        for (__cnt = (size_t) (size) * (size_t) (n);       
  112.     __cnt > 0; --__cnt)       
  113.  {       
  114.    int __c = _IO_getc_unlocked (__stream);       
  115.    if (__c == EOF)       
  116.      break;       
  117.    *__ptr++ = __c;       
  118.  }       
  119.        ((size_t) (size) * (size_t) (n) - __cnt)       
  120. / (size_t) (size); })       
  121.   : (((__builtin_constant_p (size) && (size_t) (size) == 0)   
  122.       || (__builtin_constant_p (n) && (size_t) (n) == 0))     
  123. /* Evaluate all parameters once.  */       
  124.      ? ((void) (ptr), (void) (stream), (void) (size),       
  125. (void) (n), (size_t) 0)       
  126.      : fread_unlocked (ptr, size, n, stream))))
  127. # define fwrite_unlocked(ptr, size, n, stream) 
  128.   (__extension__ ((__builtin_constant_p (size) && __builtin_constant_p (n)    
  129.    && (size_t) (size) * (size_t) (n) <= 8       
  130.    && (size_t) (size) != 0)       
  131.   ? ({ const char *__ptr = (const char *) (ptr);       
  132.        FILE *__stream = (stream);       
  133.        size_t __cnt;       
  134.        for (__cnt = (size_t) (size) * (size_t) (n);       
  135.     __cnt > 0; --__cnt)       
  136.  if (_IO_putc_unlocked (*__ptr++, __stream) == EOF)   
  137.    break;       
  138.        ((size_t) (size) * (size_t) (n) - __cnt)       
  139. / (size_t) (size); })       
  140.   : (((__builtin_constant_p (size) && (size_t) (size) == 0)   
  141.       || (__builtin_constant_p (n) && (size_t) (n) == 0))     
  142. /* Evaluate all parameters once.  */       
  143.      ? ((void) (ptr), (void) (stream), (void) (size),       
  144. (void) (n), (size_t) 0)       
  145.      : fwrite_unlocked (ptr, size, n, stream))))
  146. #endif
  147. /* Define helper macro.  */
  148. #undef __STDIO_INLINE