io_wrapper_copy_to_buffer
Name
io_wrapper_copy_to_buffer — copies up to len bytes from the io object and writes them to buf
Synopsis
#include "io_wrapper.h"
| int **io_wrapper_copy_to_buffer** (
| io, | |
| | buf, | |
| | buflen, | |
| | len)
; | |
io_object * <var class="pdparam">io</var>
;
char * <var class="pdparam">buf</var>
;
int <var class="pdparam">buflen</var>
;
int <var class="pdparam">len</var>
;
Description
Note
This reference page was automatically generated from functions found in the header files in the development branch. The function described here may not exist in generally available versions of Momentum, and may change in behavior when it is generally available. Consult your vendor for definitive advice on the use of this function.
copies up to len bytes from the io object and writes them to buf.
Copying stops when LEN bytes are copied, or when EOF is indicated on the IO object. Returns the number of bytes copied.