rbb 99/04/07 12:48:32
Modified: docs fileio.txt
Log:
Updated the docs to reflect the changes for apr_read and apr_write.
Revision Changes Path
1.6 +2 -2 apache-apr/docs/fileio.txt
Index: fileio.txt
===================================================================
RCS file: /home/cvs/apache-apr/docs/fileio.txt,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- fileio.txt 1999/02/25 21:31:36 1.5
+++ fileio.txt 1999/04/07 19:48:31 1.6
@@ -42,7 +42,7 @@
Notes: The fields within the APRFile structure will not be changed when a
file
is closed. The ONLY updated field, will be the file descriptor.
- apr_uint64_t apr_read(apr_file_t *, void *, apr_uint64_t)
+ apr_size_t apr_read(apr_file_t *, void *, apr_size_t)
Read n bytes from file and store in buffer.
Arguments:
arg 1) File descriptor to read from
@@ -50,7 +50,7 @@
arg 3) number of bytes to read
return) pointer to number of bytes read.
- apr_uint64_t apr_write(apr_file_t *, void *, apr_uint64_t)
+ apr_size_t apr_write(apr_file_t *, void *, apr_size_t)
Write n bytes of data from buffer to file
Arguments:
arg 1) File descriptor to write data to