Linguaggio C - write()

NOME

write() - scrive su un file descriptor

SINOPSI

#include <unistd.h> ssize_t write(int fd, const void *buf, size_t count);

DESCRIZIONE

La funzione write() scrive su fd numero count bytes di dati presenti nel buffer puntato da buf.

VALORE DI RITORNO

La funzione write() ritorna il numero di elementi scritti. In caso di errore viene restituito -1.

CONFORME A

SVr4, SVID, POSIX, X/OPEN, 4.3BSD.

VEDI ANCHE

open(), creat() lseek() read() close() link() symlink() unlink() stat(), lstat(), fstat() fcntl() ioctl() dup(), dup2() access()


Indice-C Indice linguaggio C
Indice librerie Indice librerie C
At Home Umberto Zappi Home Page
Indice funzioni Indice funzioni C