예제 #1
0
파일: ewf.c 프로젝트: 111X/radare
ssize_t ewf_write(int fd, const void *buf, size_t count)
{
	return libewf_write_buffer(ewf_h, buf, count);
}
예제 #2
0
파일: io_ewf.c 프로젝트: pixilla/radare2
static int ewf__write(RIO *io, RIODesc *fd, const ut8 *buf, int count) {
	return libewf_write_buffer (RIOEWF_HANDLE (fd), buf, count);
}