std::fgetpos
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. |
definiert in Header <cstdio>
|
||
int fgetpos( std::FILE* stream, std::fpos_t* pos ); |
||
Obtains the file position indicator and the current parse state (if any) for the file stream stream
and stores them in the object pointed to by pos
. The value stored is only meaningful as the input to std::fsetpos.
Inhaltsverzeichnis |
[Bearbeiten] Parameter
stream | - | Datei-Stream zu prüfen
Original: file stream to examine The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
pos | - | Zeiger auf eine fpos_t Objekt, um die Datei Stellungsanzeige zu speichern
Original: pointer to a fpos_t object to store the file position indicator to The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[Bearbeiten] Rückgabewert
0 upon success, nonzero value otherwise. Also sets errno on failure.
[Bearbeiten] Beispiel
This section is incomplete Reason: no example |
[Bearbeiten] Siehe auch
liefert die aktuelle Position in der Datei-Anzeige Original: returns the current file position indicator The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (Funktion) | |
verschiebt die Datei Positionsanzeiger zu einer bestimmten Position in einer Datei Original: moves the file position indicator to a specific location in a file The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (Funktion) | |
verschiebt die Datei Positionsanzeiger zu einer bestimmten Position in einer Datei Original: moves the file position indicator to a specific location in a file 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 fgetpos
|