Syntax: Sockets - int socketwrite (int s, char *buf, int len);
UnixLib - __ssize_t write (int s, const void *buf, size_t len);
Header: Sockets - socklib.h
UnixLib - sys/unistd.h
Returns: amount of data written, or EOF if failed
This call sends data on a socket in the same style as Socket_Send or send() except that there is no flags argument, so all flags are treated as being zero.
C definition SWI definition
|
|
|