std::fwgets
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. |
<metanoindex/>
<tbody> </tbody>| Déclaré dans l'en-tête <cwchar>
|
||
wchar_t *fgetws( wchar_t *str, int count, FILE *stream ); |
||
Lit à la plupart des personnages
count - 1 l'échelle du flux de fichier donné et les stocke dans str. La chaîne de production est toujours large-NULL fin. L'analyse s'arrête si la fin de fichier se produit ou un caractère de nouvelle ligne large se trouve, dans ce cas, str contient que les caractères larges saut de ligne .Original:
Reads at most
count - 1 wide characters from the given file stream and stores them in str. The produced wide string is always NULL-terminated. Parsing stops if end-of-file occurs or a newline wide character is found, in which case str will contain that wide newline character.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.
Paramètres
| str | - | chaîne large de lire les caractères
Original: wide string to read the characters to The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| count | - | la longueur de
strOriginal: the length of strThe text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| stream | - | déposer flux pour lire les données à partir de
Original: file stream to read the data from The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
Retourne la valeur
str en cas de succès, NULL sur une erreurOriginal:
str on success, NULL on an errorThe 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.
Voir aussi
lit format d'entrée pour les caractères larges de stdin, un flux de fichier ou un tampon Original: reads formatted wide character input from stdin, a file stream or a buffer The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (fonction) | |
obtient un caractère large depuis un flux de fichier Original: gets a wide character from 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) | |
écrit une chaîne de large pour un flux de fichier Original: writes a wide string to 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 fgetws
| |