mud/lib/doc/efun/filesystem/write_bytes
2020-09-06 05:43:07 -07:00

11 lines
306 B
Plaintext

write_bytes - writes a contiguous series of bytes to a file
int write_bytes( string path, int start, string series );
This function writes the bytes in 'series' into the file named by 'path'
beginning at byte # 'start'. It returns zero (0) upon failure, 1 otherwise.
See also:
write_file,
read_bytes