_gfortran_set_max_subrecord_length
set the maximum length for a subrecord. This option only makes sense for testing and debugging of unformatted I/O.
void _gfortran_set_max_subrecord_length (int val)
val | the maximum length for a subrecord; the maximum permitted value is 2147483639, which is also the default. |
int main (int argc, char *argv[]) { /* Initialize libgfortran. */ _gfortran_set_args (argc, argv); _gfortran_set_max_subrecord_length (8); return 0; }
© Free Software Foundation
Licensed under the GNU Free Documentation License, Version 1.3.
https://gcc.gnu.org/onlinedocs/gcc-10.2.0/gfortran/_005fgfortran_005fset_005fmax_005fsubrecord_005flength.html