Skip to content

Latest commit

 

History

History
41 lines (34 loc) · 1.23 KB

setvbuf-constants.md

File metadata and controls

41 lines (34 loc) · 1.23 KB
title ms.custom ms.date ms.reviewer ms.suite ms.technology ms.tgt_pltfrm ms.topic f1_keywords dev_langs helpviewer_keywords ms.assetid caps.latest.revision author ms.author manager
setvbuf Constants | Microsoft Docs
11/04/2016
cpp-standard-libraries
article
_IOFBF
_IONBF
_IOLBF
C++
_IOFBF constant
IOFBF constant
IONBF constant
_IOLBF constant
IOLBF constant
_IONBF constant
a6ec4dd5-1f24-498c-871a-e874cd28d33c
6
corob-msft
corob
ghogen

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