Go to the first, previous, next, last section, table of contents.


setbuf

Syntax

#include <stdio.h>

void setbuf(FILE *file, char *buffer);

Description

This function modifies the buffering characteristics of file. First, if the file already has a buffer, it is freed. If there was any pending data in it, it is lost, so this function should only be used immediately after a call to fopen.

If the buffer passed is NULL, the file is set to unbuffered. If a non-NULL buffer is passed, it must be at least BUFSIZ bytes in size, and the file is set to fully buffered.

See section setbuffer. See section setlinebuf. See section setvbuf.

Return Value

None.

Portability

ANSI, POSIX

Example

setbuf(stdout, malloc(BUFSIZ));


Go to the first, previous, next, last section, table of contents.