setbuf
De cppreference.com.
|
|
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
| Défini dans l'entête <stdio.h>
|
||
Définit la mémoire tampon interne à utiliser pour les opérations de flux. Il doit être en caractères d'au moins
BUFSIZ longtemps . Original:
Sets the internal buffer to use for stream operations. It should be at least
BUFSIZ characters long. The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Si
buffer n'est pas nul, ce qui équivaut à setvbuf(stream, buffer, _IOFBF, BUFSIZ)Original:
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Si
buffer est nulle, ce qui équivaut à setvbuf(stream, NULL, _IONBF, 0), ce qui désactive le tampon .Original:
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[modifier] Paramètres
| stream | - | le flux de fichier pour définir le tampon
Original: the file stream to set the buffer to The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| buffer | - | pointeur vers un tampon pour le flux à utiliser. Si NULL est fourni, le tampon est mis hors tension
Original: pointer to a buffer for the stream to use. If NULL is supplied, the buffering is turned off The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[modifier] Retourne la valeur
Aucun .
Original:
None.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[modifier] Voir aussi
| définit le tampon et la taille d'un fichier stream Original: sets the buffer and its size for a file stream The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (fonction) | |
| C++ documentation for setbuf
| |