eg, open FH, "<filename"
vs FILE *fh = fopen("filename","r")
Supports, for example:
$fh = IO::File->new("filename", "r");
Or, as with C, things like O_WRONLY|O_APPEND in place of "r".
Supports, for example:
$fh = IO::File->new("filename", "r");
Or, as with C, things like O_WRONLY|O_APPEND in place of "r".