Non-Confidential | ![]() | ARM 100073_0607_00_en | ||
| ||||
Home > The C and C++ Library Functions Reference > _sys_write() |
Defined in rt_sys.h, the _sys_write()
function writes the contents of a buffer to a file previously opened with _sys_open()
.
int
_sys_write(FILEHANDLEfh
,const unsigned char
*buf
,unsigned
len
,int
mode
);
The mode parameter is here for historical reasons. It contains nothing useful and must be ignored.
The return value is either:
A positive number representing the number of characters not written (so any nonzero return value denotes a failure of some sort).
A negative number indicating an error.