Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 1.01 KB

setvbuf-constants.md

File metadata and controls

32 lines (24 loc) · 1.01 KB
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Learn more about: setvbuf Constants
setvbuf Constants
11/04/2016
STDIO/_IOFBF
STDIO/_IONBF
STDIO/_IOLBF
_IOFBF
_IONBF
_IOLBF
_IOFBF constant
IOFBF constant
IONBF constant
_IOLBF constant
IOLBF constant
_IONBF constant
a6ec4dd5-1f24-498c-871a-e874cd28d33c

setvbuf constants

Syntax

#include <stdio.h>

Remarks

These constants represent the type of buffer for setvbuf.

The possible values are given by the following manifest constants:

Constant Meaning
_IOFBF Full buffering: Buffer specified in call to setvbuf is used and its size is as specified in setvbuf call. If buffer pointer is NULL, automatically allocated buffer of specified size is used.
_IOLBF Same as _IOFBF.
_IONBF No buffer is used, regardless of arguments in call to setvbuf.

See also

setbuf
Global constants