write ( fd buf nbytes -- ssize_t ) (original) (raw)

write ( fd buf nbytes -- ssize_t )

Vocabulary
unix.ffi

Inputs

fd an object
buf an object
nbytes an object

Outputs

ssize_t an object

Definition

USING: alien.c-types alien.syntax ;

IN: unix.ffi

LIBRARY: libc FUNCTION: ssize_t write
( int fd, void* buf, size_t nbytes )