mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

112 lines
3.9 KiB

  1. # --- ROCK-COPYRIGHT-NOTE-BEGIN ---
  2. #
  3. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
  4. # Please add additional copyright information _after_ the line containing
  5. # the ROCK-COPYRIGHT-NOTE-END tag. Otherwise it might get removed by
  6. # the ./scripts/Create-CopyPatch script. Do not edit this copyright text!
  7. #
  8. # ROCK Linux: rock-src/package/base/dietlibc/stdio_ext_h.patch
  9. # ROCK Linux is Copyright (C) 1998 - 2003 Clifford Wolf
  10. #
  11. # This program is free software; you can redistribute it and/or modify
  12. # it under the terms of the GNU General Public License as published by
  13. # the Free Software Foundation; either version 2 of the License, or
  14. # (at your option) any later version. A copy of the GNU General Public
  15. # License can be found at Documentation/COPYING.
  16. #
  17. # Many people helped and are helping developing ROCK Linux. Please
  18. # have a look at http://www.rocklinux.org/ and the Documentation/TEAM
  19. # file for details.
  20. #
  21. # --- ROCK-COPYRIGHT-NOTE-END ---
  22. --- /dev/null Thu Jan 1 00:00:00 1970
  23. +++ ./include/stdio_ext.h Mon Jan 6 20:23:12 2003
  24. @@ -0,0 +1,87 @@
  25. +/* Functions to access FILE structure internals.
  26. + Copyright (C) 2000, 2001 Free Software Foundation, Inc.
  27. + This file is part of the GNU C Library.
  28. +
  29. + The GNU C Library is free software; you can redistribute it and/or
  30. + modify it under the terms of the GNU Lesser General Public
  31. + License as published by the Free Software Foundation; either
  32. + version 2.1 of the License, or (at your option) any later version.
  33. +
  34. + The GNU C Library is distributed in the hope that it will be useful,
  35. + but WITHOUT ANY WARRANTY; without even the implied warranty of
  36. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  37. + Lesser General Public License for more details.
  38. +
  39. + You should have received a copy of the GNU Lesser General Public
  40. + License along with the GNU C Library; if not, write to the Free
  41. + Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  42. + 02111-1307 USA. */
  43. +
  44. +/* This header contains the same definitions as the header of the same name
  45. + on Sun's Solaris OS. */
  46. +
  47. +#ifndef _STDIO_EXT_H
  48. +#define _STDIO_EXT_H 1
  49. +
  50. +#include <stdio.h>
  51. +
  52. +enum
  53. +{
  54. + /* Query current state of the locking status. */
  55. + FSETLOCKING_QUERY = 0,
  56. +#define FSETLOCKING_QUERY FSETLOCKING_QUERY
  57. + /* The library protects all uses of the stream functions, except for
  58. + uses of the *_unlocked functions, by calls equivalent to flockfile(). */
  59. + FSETLOCKING_INTERNAL,
  60. +#define FSETLOCKING_INTERNAL FSETLOCKING_INTERNAL
  61. + /* The user will take care of locking. */
  62. + FSETLOCKING_BYCALLER
  63. +#define FSETLOCKING_BYCALLER FSETLOCKING_BYCALLER
  64. +};
  65. +
  66. +
  67. +__BEGIN_DECLS
  68. +
  69. +/* Return the size of the buffer of FP in bytes currently in use by
  70. + the given stream. */
  71. +extern size_t __fbufsize (FILE *__fp);
  72. +
  73. +
  74. +/* Return non-zero value iff the stream FP is opened readonly, or if the
  75. + last operation on the stream was a read operation. */
  76. +extern int __freading (FILE *__fp);
  77. +
  78. +/* Return non-zero value iff the stream FP is opened write-only or
  79. + append-only, or if the last operation on the stream was a write
  80. + operation. */
  81. +extern int __fwriting (FILE *__fp);
  82. +
  83. +
  84. +/* Return non-zero value iff stream FP is not opened write-only or
  85. + append-only. */
  86. +extern int __freadable (FILE *__fp);
  87. +
  88. +/* Return non-zero value iff stream FP is not opened read-only. */
  89. +extern int __fwritable (FILE *__fp);
  90. +
  91. +
  92. +/* Return non-zero value iff the stream FP is line-buffered. */
  93. +extern int __flbf (FILE *__fp);
  94. +
  95. +
  96. +/* Discard all pending buffered I/O on the stream FP. */
  97. +extern void __fpurge (FILE *__fp);
  98. +
  99. +/* Return amount of output in bytes pending on a stream FP. */
  100. +extern size_t __fpending (FILE *__fp);
  101. +
  102. +/* Flush all line-buffered files. */
  103. +extern void _flushlbf (void);
  104. +
  105. +
  106. +/* Set locking status of stream FP to TYPE. */
  107. +extern int __fsetlocking (FILE *__fp, int __type);
  108. +
  109. +__END_DECLS
  110. +
  111. +#endif /* stdio_ext.h */