std::fwgets
Aus 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>| definiert in Header <cwchar>
|
||
wchar_t *fgetws( wchar_t *str, int count, FILE *stream ); |
||
Liest höchstens
count - 1 breite Zeichen aus der angegebenen Datei-Stream und speichert sie in str. Der erzeugte breite String ist immer NULL-terminiert. Parsing stoppt, wenn am Ende der Datei auftritt oder ein newline-Zeichen gefunden wird, in welchem Fall str wird das Breitbildformat Zeilenumbruchzeichen enthalten .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.
Parameter
| str | - | Widestringfelder, um die Zeichen zu lesen
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 | - | die Länge
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 | - | Datei-Stream zum Lesen der Daten aus
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. |
Rückgabewert
str bei Erfolg NULL auf einem IrrtumOriginal:
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.
Siehe auch
liest formatierten breiten Zeicheneingabe von stdin, eine Datei-Strom oder einen Puffer 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. (Funktion) | |
erhält eine breite Zeichen aus einem Datei-Stream 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. (Funktion) | |
schreibt ein breites String in eine Datei-Stream 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. (Funktion) | |
C documentation for fgetws
| |