os: bring back write_bytes_at()
parent
bb6098e2d3
commit
a5db9c3519
11
vlib/os/os.v
11
vlib/os/os.v
|
@ -326,18 +326,15 @@ pub fn open_file(path string, mode string, options ...int) ?File {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
pub fn (f mut File) write_bytes_at(data voidptr, size, pos int) {
|
pub fn (f mut File) write_bytes_at(data voidptr, size, pos int) {
|
||||||
$if linux {
|
//$if linux {
|
||||||
}
|
//}
|
||||||
$else {
|
//$else {
|
||||||
C.fseek(f.cfile, pos, C.SEEK_SET)
|
C.fseek(f.cfile, pos, C.SEEK_SET)
|
||||||
C.fwrite(data, 1, size, f.cfile)
|
C.fwrite(data, 1, size, f.cfile)
|
||||||
C.fseek(f.cfile, 0, C.SEEK_END)
|
C.fseek(f.cfile, 0, C.SEEK_END)
|
||||||
}
|
//}
|
||||||
}
|
}
|
||||||
*/
|
|
||||||
|
|
||||||
|
|
||||||
pub fn (f mut File) flush() {
|
pub fn (f mut File) flush() {
|
||||||
if !f.opened {
|
if !f.opened {
|
||||||
|
|
Loading…
Reference in New Issue