X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=pod%2Fperlapio.pod;h=90475a9543f4c6f8d8554a68a0543670d80efffc;hb=9949743fb3b989b8694b2a5e666ad6a181918a59;hp=0db385e388a09f89183a34f325c78534c083ff5e;hpb=21917246723837f23ca941fdf14b8ad84573a24e;p=p5sagit%2Fp5-mst-13.2.git diff --git a/pod/perlapio.pod b/pod/perlapio.pod index 0db385e..90475a9 100644 --- a/pod/perlapio.pod +++ b/pod/perlapio.pod @@ -29,8 +29,8 @@ perlapio - perl's IO abstraction interface. int PerlIO_fileno(PerlIO *); PerlIO *PerlIO_fdopen(int, const char *); - PerlIO *PerlIO_importFILE(FILE *); - FILE *PerlIO_exportFILE(PerlIO *); + PerlIO *PerlIO_importFILE(FILE *, int flags); + FILE *PerlIO_exportFILE(PerlIO *, int flags); FILE *PerlIO_findFILE(PerlIO *); void PerlIO_releaseFILE(PerlIO *,FILE *); @@ -57,7 +57,7 @@ perlapio - perl's IO abstraction interface. =head1 DESCRIPTION Perl's source code should use the above functions instead of those -defined in ANSI C's I, I will the C<#define> them to +defined in ANSI C's I. The perl headers will C<#define> them to the I/O mechanism selected at Configure time. The functions are modeled on those in I, but parameter order @@ -67,7 +67,7 @@ has been "tidied up a little". =item B -This takes the place of FILE *. Unlike FILE * it should be treated as +This takes the place of FILE *. Like FILE * it should be treated as opaque (it is probably safe to assume it is a pointer to something). =item B, B, B @@ -84,7 +84,7 @@ These correspond to fopen()/fdopen() arguments are the same. =item B, B -These are is fprintf()/vfprintf equivalents. +These are fprintf()/vfprintf() equivalents. =item B @@ -201,8 +201,8 @@ behaviour. =item B This corresponds to setlinebuf(). Use is deprecated pending -further discussion. (Perl core uses it I when "dumping" -is has nothing to do with $| auto-flush.) +further discussion. (Perl core uses it I when "dumping"; +it has nothing to do with $| auto-flush.) =back