rbb         99/02/23 13:13:55

  Modified:    docs     fileio.txt
  Log:
  Change specs to reflect new naming guidelines
  
  Revision  Changes    Path
  1.3       +2 -2      apache-apr/docs/fileio.txt
  
  Index: fileio.txt
  ===================================================================
  RCS file: /home/cvs/apache-apr/docs/fileio.txt,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- fileio.txt        1999/02/23 16:07:22     1.2
  +++ fileio.txt        1999/02/23 21:13:55     1.3
  @@ -1,6 +1,6 @@
   <h2>File I/O</h2>
   
  - APRFile *apr_open(char *, APRUInt32, APRFilePerms)
  + apr_file_t *apr_open(char *, apr_int32_t, apr_fileperms_t mode)
        Open the specified file, and return a method for accessing that file.
        Arguments:
        arg 1)  full path name to the file to be opened.
  @@ -32,7 +32,7 @@
           is small, and a stat isn't required after opening the file. 
   
   
  -APRStatus apr_close(APRFile);
  +apr_status_t apr_close(apr_file_t);
        Close the specified file descriptor
        Arguments:
        arg 1)  file descriptor of file to be closed.
  
  
  

Reply via email to