/*D
   MPI_File_iread - Nonblocking read using individual file pointer

Synopsis:
.vb
int MPI_File_iread(MPI_File fh, void *buf, int count, MPI_Datatype datatype,
                   MPI_Request *request)
.ve
.vb
int MPI_File_iread_c(MPI_File fh, void *buf, MPI_Count count,
                     MPI_Datatype datatype, MPI_Request *request)
.ve

Input Parameters:
+ fh - file handle (handle)
. count - number of elements in buffer (integer)
- datatype - datatype of each buffer element (handle)

Output Parameters:
+ buf - initial address of buffer (choice)
- request - request object (handle)

.N ThreadSafe

.N Fortran

.N Errors
.N MPI_SUCCESS
.N MPI_ERR_ARG
.N MPI_ERR_BUFFER
.N MPI_ERR_COUNT
.N MPI_ERR_TYPE
.N MPI_ERR_OTHER

D*/

