SETBUF.3
上传用户:datang2001
上传日期:2007-02-01
资源大小:53269k
文件大小:3k
源码类别:

操作系统开发

开发平台:

C/C++

  1. ." Copyright (c) 1980 Regents of the University of California.
  2. ." All rights reserved.  The Berkeley software License Agreement
  3. ." specifies the terms and conditions for redistribution.
  4. ."
  5. ." @(#)setbuf.3s 6.2 (Berkeley) 5/12/86
  6. ."
  7. .TH SETBUF 3  "May 12, 1986"
  8. .UC 4
  9. .SH NAME
  10. setbuf, setvbuf - assign buffering to a stream
  11. .SH SYNOPSIS
  12. .nf
  13. .ft B
  14. #include <stdio.h>
  15. int setbuf(FILE *fIstreamfP, char *fIbuffP)
  16. int setvbuf(FILE *fIstreamfP, char *fIbuffP, int fItypefP, size_t fIsizefP)
  17. .SH DESCRIPTION
  18. The three types of buffering available are unbuffered, block buffered,
  19. and line buffered.
  20. When an output stream is unbuffered, information appears on the
  21. destination file or terminal as soon as written;
  22. when it is block buffered many characters are saved up and written as a block;
  23. when it is line buffered characters are saved up until a newline is
  24. encountered or input is read from stdin.
  25. .B Fflush
  26. (see 
  27. .BR fclose (3))
  28. may be used to force the block out early.
  29. Normally all files are block buffered.
  30. A buffer is obtained from
  31. .BR  malloc (3)
  32. upon the first
  33. .B getc
  34. or
  35. .BR  putc (3)
  36. on the file.
  37. If the standard stream
  38. .B stdout
  39. refers to a terminal it is line buffered.
  40. The standard stream
  41. .B stderr
  42. is always unbuffered.
  43. .PP
  44. .B Setbuf
  45. is used after a stream has been opened but before it is read or written.
  46. The character array
  47. .I buf
  48. is used instead of an automatically allocated buffer.  If
  49. .I buf
  50. is the constant pointer
  51. .SM
  52. .BR NULL ,
  53. input/output will be completely unbuffered.
  54. A manifest constant 
  55. .SM
  56. .B BUFSIZ
  57. tells how big an array is needed:
  58. .IP
  59. .B char
  60. buf[BUFSIZ];
  61. .PP
  62. .BR Setvbuf ,
  63. an alternate form of 
  64. .BR setbuf ,
  65. is used after a stream has been opened but before it is read or written.
  66. It has three uses, depending on the value of the
  67. .IR type
  68. argument:
  69. .TP 5
  70. .B "setvbuf(fIstreamfP, fIbuffP, _IOFBF, fIsizefP)"
  71. Causes input/output to be fully buffered using the character array
  72. .I buf
  73. whose size is determined by the 
  74. .I size
  75. argument.
  76. If
  77. .I buf
  78. is the constant pointer
  79. .SM
  80. .BR NULL ,
  81. then an automatically allocated buffer will be used.
  82. .TP 5
  83. .B "setvbuf(fIstreamfP, fIbuffP, _IOLBF, fIsizefP)"
  84. Like above, except that output will be line buffered, i.e. the buffer will
  85. be flushed when a newline is written, the buffer is full, or input is
  86. requested.
  87. .TP 5
  88. .B "setvbuf(fIstreamfP, fIbuffP, _IONBF, fIsizefP)"
  89. Causes input/output to be completely unbuffered.
  90. .I Buf
  91. and
  92. .I size
  93. are ignored.
  94. .PP
  95. A file can be changed between unbuffered, line buffered, or block buffered
  96. by using
  97. .B freopen
  98. (see
  99. .BR fopen (3))
  100. followed by the appropriate
  101. .B setvbuf
  102. call.
  103. .SH "SEE ALSO"
  104. .BR fopen (3),
  105. .BR getc (3),
  106. .BR putc (3),
  107. .BR malloc (3),
  108. .BR fclose (3),
  109. .BR puts (3),
  110. .BR printf (3),
  111. .BR fread (3).