SETBUF.3
上传用户:jnzhq888
上传日期:2007-01-18
资源大小:51694k
文件大小:3k
源码类别:

操作系统开发

开发平台:

WINDOWS

  1. SETBUF(3)                 Minix Programmer's Manual                  SETBUF(3)
  2. NAME
  3.      setbuf, setvbuf - assign buffering to a stream
  4. SYNOPSIS
  5.      #include <stdio.h>
  6.      int setbuf(FILE *stream, char *buf)
  7.      int setvbuf(FILE *stream, char *buf, int type, size_t size)
  8. DESCRIPTION
  9.      The three types of buffering available are  unbuffered,  block  buffered,
  10.      and  line  buffered.   When  an  output stream is unbuffered, information
  11.      appears on the destination file or terminal as soon as written;  when  it
  12.      is  block  buffered  many characters are saved up and written as a block;
  13.      when it is line buffered characters are  saved  up  until  a  newline  is
  14.      encountered  or  input is read from stdin.  Fflush (see fclose(3)) may be
  15.      used to force  the  block  out  early.   Normally  all  files  are  block
  16.      buffered.   A  buffer  is  obtained from malloc(3) upon the first getc or
  17.      putc(3) on the file.  If the standard stream stdout refers to a  terminal
  18.      it is line buffered.  The standard stream stderr is always unbuffered.
  19.      Setbuf is used after a stream has been opened but before it  is  read  or
  20.      written.   The  character  array  buf is used instead of an automatically
  21.      allocated buffer.  If buf is the constant pointer NULL, input/output will
  22.      be  completely  unbuffered.   A manifest constant BUFSIZ tells how big an
  23.      array is needed:
  24.           char buf[BUFSIZ];
  25.      Setvbuf, an alternate form of setbuf, is used after  a  stream  has  been
  26.      opened but before it is read or written.  It has three uses, depending on
  27.      the value of the type argument:
  28.      setvbuf(stream, buf, _IOFBF, size)
  29.           Causes input/output to be fully buffered using the  character  array
  30.           buf  whose  size  is determined by the size argument.  If buf is the
  31.           constant pointer NULL, then an automatically allocated  buffer  will
  32.           be used.
  33.      setvbuf(stream, buf, _IOLBF, size)
  34.           Like above, except that output  will  be  line  buffered,  i.e.  the
  35.           buffer  will  be  flushed  when  a newline is written, the buffer is
  36.           full, or input is requested.
  37.      setvbuf(stream, buf, _IONBF, size)
  38.           Causes input/output to be completely unbuffered.  Buf and  size  are
  39.           ignored.
  40. 4BSD                              May 12, 1986                               1
  41. SETBUF(3)                 Minix Programmer's Manual                  SETBUF(3)
  42.      A file can  be  changed  between  unbuffered,  line  buffered,  or  block
  43.      buffered  by  using  freopen  (see  fopen(3)) followed by the appropriate
  44.      setvbuf call.
  45. SEE ALSO
  46.      fopen(3), getc(3), putc(3),  malloc(3),  fclose(3),  puts(3),  printf(3),
  47.      fread(3).
  48. 4BSD                              May 12, 1986                               2