Skip to content

Latest commit

 

History

History
66 lines (59 loc) · 1.44 KB

File metadata and controls

66 lines (59 loc) · 1.44 KB
title setvbuf Constants | Microsoft Docs
ms.custom
ms.date 11/04/2016
ms.reviewer
ms.suite
ms.technology
cpp-standard-libraries
ms.tgt_pltfrm
ms.topic article
f1_keywords
_IOFBF
_IONBF
_IOLBF
dev_langs
C++
helpviewer_keywords
_IOFBF constant
IOFBF constant
IONBF constant
_IOLBF constant
IOLBF constant
_IONBF constant
ms.assetid a6ec4dd5-1f24-498c-871a-e874cd28d33c
caps.latest.revision 6
author corob-msft
ms.author corob
manager ghogen
translation.priority.ht
cs-cz
de-de
es-es
fr-fr
it-it
ja-jp
ko-kr
pl-pl
pt-br
ru-ru
tr-tr
zh-cn
zh-tw

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