@@ -534,7 +534,7 @@ Params:
534
534
name = range or string representing the file _name
535
535
stdioOpenmode = range or string represting the open mode
536
536
(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)
538
538
function)
539
539
540
540
Throws: `ErrnoException` if the file could not be opened.
@@ -619,7 +619,7 @@ file.
619
619
Detaches from the current file (throwing on failure), and then attempts to
620
620
_open file `name` with mode `stdioOpenmode`. The mode has the
621
621
same 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.
623
623
624
624
Throws: `ErrnoException` in case of error.
625
625
*/
@@ -933,7 +933,7 @@ Throws: `ErrnoException` in case of error.
933
933
934
934
/**
935
935
Returns `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)).
937
937
938
938
Throws: `Exception` if the file is not opened.
939
939
*/
@@ -961,7 +961,7 @@ Throws: `Exception` if the file is not opened.
961
961
962
962
/**
963
963
If 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
965
965
the file handle.
966
966
*/
967
967
@property bool error() const @trusted pure nothrow
@@ -1018,7 +1018,7 @@ Throws: `ErrnoException` on failure if closing the file.
1018
1018
/**
1019
1019
If the file was closed or not yet opened, succeeds vacuously. Otherwise
1020
1020
closes the file (by calling $(HTTP
1021
- cplusplus.com/reference/clibrary/ cstdio/fclose.html , fclose)),
1021
+ cplusplus.com/reference/cstdio/fclose, fclose)),
1022
1022
throwing on error. Even if an exception is thrown, afterwards the $(D
1023
1023
File) object is empty. This is different from `detach` in that it
1024
1024
always closes the file; consequently, all other `File` objects
@@ -1046,7 +1046,7 @@ Throws: `ErrnoException` on error.
1046
1046
1047
1047
/**
1048
1048
If 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 ,
1050
1050
_clearerr) for the file handle.
1051
1051
*/
1052
1052
void clearerr () @safe pure nothrow
@@ -1058,7 +1058,7 @@ _clearerr) for the file handle.
1058
1058
/**
1059
1059
Flushes the C `FILE` buffers.
1060
1060
1061
- Calls $(HTTP cplusplus.com/reference/clibrary/ cstdio/_fflush.html , _fflush)
1061
+ Calls $(HTTP cplusplus.com/reference/cstdio/fflush , _fflush)
1062
1062
for the file handle.
1063
1063
1064
1064
Throws: `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.
1125
1125
}
1126
1126
1127
1127
/**
1128
- Calls $(HTTP cplusplus.com/reference/clibrary/ cstdio/fread.html , fread) for the
1128
+ Calls $(HTTP cplusplus.com/reference/cstdio/fread, fread) for the
1129
1129
file handle. The number of items to read and the size of
1130
1130
each item is inferred from the size and type of the input array, respectively.
1131
1131
@@ -1220,7 +1220,7 @@ Throws: `ErrnoException` if the file is not opened or the call to `fread` fails.
1220
1220
}
1221
1221
1222
1222
/**
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
1224
1224
handle. The number of items to write and the size of each
1225
1225
item is inferred from the size and type of the input array, respectively. An
1226
1226
error 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
1290
1290
}
1291
1291
1292
1292
/**
1293
- Calls $(HTTP cplusplus.com/reference/clibrary/ cstdio/fseek.html , fseek)
1293
+ Calls $(HTTP cplusplus.com/reference/cstdio/fseek, fseek)
1294
1294
for the file handle to move its position indicator.
1295
1295
1296
1296
Params:
@@ -1420,7 +1420,7 @@ Throws: `Exception` if the file is not opened.
1420
1420
}
1421
1421
1422
1422
/**
1423
- Calls $(HTTP cplusplus.com/reference/clibrary/ cstdio/_rewind.html , _rewind)
1423
+ Calls $(HTTP cplusplus.com/reference/cstdio/rewind , _rewind)
1424
1424
for the file handle.
1425
1425
1426
1426
Throws: `Exception` if the file is not opened.
@@ -1434,7 +1434,7 @@ Throws: `Exception` if the file is not opened.
1434
1434
}
1435
1435
1436
1436
/**
1437
- Calls $(HTTP cplusplus.com/reference/clibrary/ cstdio/_setvbuf.html , _setvbuf) for
1437
+ Calls $(HTTP cplusplus.com/reference/cstdio/setvbuf , _setvbuf) for
1438
1438
the file handle.
1439
1439
1440
1440
Throws: `Exception` if the file is not opened.
@@ -1450,7 +1450,7 @@ Throws: `Exception` if the file is not opened.
1450
1450
}
1451
1451
1452
1452
/**
1453
- Calls $(HTTP cplusplus.com/reference/clibrary/ cstdio/_setvbuf.html ,
1453
+ Calls $(HTTP cplusplus.com/reference/cstdio/setvbuf ,
1454
1454
_setvbuf) for the file handle.
1455
1455
1456
1456
Throws: `Exception` if the file is not opened.
@@ -2253,7 +2253,7 @@ $(CONSOLE
2253
2253
2254
2254
/**
2255
2255
Returns a temporary file by calling
2256
- $(HTTP cplusplus.com/reference/clibrary/ cstdio/_tmpfile.html , _tmpfile).
2256
+ $(HTTP cplusplus.com/reference/cstdio/tmpfile , _tmpfile).
2257
2257
Note that the created file has no $(LREF name).*/
2258
2258
static File tmpfile () @safe
2259
2259
{
0 commit comments