@@ -534,7 +534,7 @@ Params:
534534 name = range or string representing the file _name
535535 stdioOpenmode = range or string represting the open mode
536536 (with the same semantics as in the C standard library
537- $(HTTP cplusplus.com/reference/clibrary/ cstdio/fopen.html , fopen)
537+ $(HTTP cplusplus.com/reference/cstdio/fopen, fopen)
538538 function)
539539
540540Throws: `ErrnoException` if the file could not be opened.
@@ -619,7 +619,7 @@ file.
619619Detaches from the current file (throwing on failure), and then attempts to
620620_open file `name` with mode `stdioOpenmode`. The mode has the
621621same semantics as in the C standard library $(HTTP
622- cplusplus.com/reference/clibrary/ cstdio/fopen.html , fopen) function.
622+ cplusplus.com/reference/cstdio/fopen, fopen) function.
623623
624624Throws: `ErrnoException` in case of error.
625625 */
@@ -933,7 +933,7 @@ Throws: `ErrnoException` in case of error.
933933
934934/**
935935Returns `true` if the file is at end (see $(HTTP
936- cplusplus.com/reference/clibrary/ cstdio/feof.html , feof)).
936+ cplusplus.com/reference/cstdio/feof, feof)).
937937
938938Throws: `Exception` if the file is not opened.
939939 */
@@ -961,7 +961,7 @@ Throws: `Exception` if the file is not opened.
961961
962962/**
963963If the file is closed or not yet opened, returns `true`. Otherwise, returns
964- $(HTTP cplusplus.com/reference/clibrary/ cstdio/ferror.html , ferror) for
964+ $(HTTP cplusplus.com/reference/cstdio/ferror, ferror) for
965965the file handle.
966966 */
967967 @property bool error() const @trusted pure nothrow
@@ -1018,7 +1018,7 @@ Throws: `ErrnoException` on failure if closing the file.
10181018/**
10191019If the file was closed or not yet opened, succeeds vacuously. Otherwise
10201020closes the file (by calling $(HTTP
1021- cplusplus.com/reference/clibrary/ cstdio/fclose.html , fclose)),
1021+ cplusplus.com/reference/cstdio/fclose, fclose)),
10221022throwing on error. Even if an exception is thrown, afterwards the $(D
10231023File) object is empty. This is different from `detach` in that it
10241024always closes the file; consequently, all other `File` objects
@@ -1046,7 +1046,7 @@ Throws: `ErrnoException` on error.
10461046
10471047/**
10481048If the file is closed or not yet opened, succeeds vacuously. Otherwise, returns
1049- $(HTTP cplusplus.com/reference/clibrary/ cstdio/_clearerr.html ,
1049+ $(HTTP cplusplus.com/reference/cstdio/clearerr ,
10501050_clearerr) for the file handle.
10511051 */
10521052 void clearerr () @safe pure nothrow
@@ -1058,7 +1058,7 @@ _clearerr) for the file handle.
10581058/**
10591059Flushes the C `FILE` buffers.
10601060
1061- Calls $(HTTP cplusplus.com/reference/clibrary/ cstdio/_fflush.html , _fflush)
1061+ Calls $(HTTP cplusplus.com/reference/cstdio/fflush , _fflush)
10621062for the file handle.
10631063
10641064Throws: `Exception` if the file is not opened or if the call to `fflush` fails.
@@ -1125,7 +1125,7 @@ Throws: `Exception` if the file is not opened or if the OS call fails.
11251125 }
11261126
11271127/**
1128- Calls $(HTTP cplusplus.com/reference/clibrary/ cstdio/fread.html , fread) for the
1128+ Calls $(HTTP cplusplus.com/reference/cstdio/fread, fread) for the
11291129file handle. The number of items to read and the size of
11301130each item is inferred from the size and type of the input array, respectively.
11311131
@@ -1220,7 +1220,7 @@ Throws: `ErrnoException` if the file is not opened or the call to `fread` fails.
12201220 }
12211221
12221222/**
1223- Calls $(HTTP cplusplus.com/reference/clibrary/ cstdio/fwrite.html , fwrite) for the file
1223+ Calls $(HTTP cplusplus.com/reference/cstdio/fwrite, fwrite) for the file
12241224handle. The number of items to write and the size of each
12251225item is inferred from the size and type of the input array, respectively. An
12261226error is thrown if the buffer could not be written in its entirety.
@@ -1290,7 +1290,7 @@ Throws: `ErrnoException` if the file is not opened or if the call to `fwrite` fa
12901290 }
12911291
12921292/**
1293- Calls $(HTTP cplusplus.com/reference/clibrary/ cstdio/fseek.html , fseek)
1293+ Calls $(HTTP cplusplus.com/reference/cstdio/fseek, fseek)
12941294for the file handle to move its position indicator.
12951295
12961296Params:
@@ -1420,7 +1420,7 @@ Throws: `Exception` if the file is not opened.
14201420 }
14211421
14221422/**
1423- Calls $(HTTP cplusplus.com/reference/clibrary/ cstdio/_rewind.html , _rewind)
1423+ Calls $(HTTP cplusplus.com/reference/cstdio/rewind , _rewind)
14241424for the file handle.
14251425
14261426Throws: `Exception` if the file is not opened.
@@ -1434,7 +1434,7 @@ Throws: `Exception` if the file is not opened.
14341434 }
14351435
14361436/**
1437- Calls $(HTTP cplusplus.com/reference/clibrary/ cstdio/_setvbuf.html , _setvbuf) for
1437+ Calls $(HTTP cplusplus.com/reference/cstdio/setvbuf , _setvbuf) for
14381438the file handle.
14391439
14401440Throws: `Exception` if the file is not opened.
@@ -1450,7 +1450,7 @@ Throws: `Exception` if the file is not opened.
14501450 }
14511451
14521452/**
1453- Calls $(HTTP cplusplus.com/reference/clibrary/ cstdio/_setvbuf.html ,
1453+ Calls $(HTTP cplusplus.com/reference/cstdio/setvbuf ,
14541454_setvbuf) for the file handle.
14551455
14561456Throws: `Exception` if the file is not opened.
@@ -2253,7 +2253,7 @@ $(CONSOLE
22532253
22542254/**
22552255 Returns a temporary file by calling
2256- $(HTTP cplusplus.com/reference/clibrary/ cstdio/_tmpfile.html , _tmpfile).
2256+ $(HTTP cplusplus.com/reference/cstdio/tmpfile , _tmpfile).
22572257 Note that the created file has no $(LREF name).*/
22582258 static File tmpfile () @safe
22592259 {
0 commit comments