file.read
Reading a file.
method uint file.read (
uint ptr,
uint size
)
uint ptr,
uint size
)
Parameters
ptr | The pointer where the file will be read. |
size | The size of the data being read. |
Return value
The function returns the size of the read data.
file.read
Reading a file.
method uint file.read (
buf rbuf,
uint size
)
buf rbuf,
uint size
)
Parameters
rbuf | The buffer where data will be read. Reading is carried out by adding data to the buffer. It means that read data will be added to those already existing in the buffer. |
size | The size of the data being read. |
Return value
The function returns the size of the read data.
Related links | Source |