Files
sqlite3/vfs/os_std_rw.go
Nuno Cruces 5e1909a20e Issue #230.
2025-02-24 13:13:25 +00:00

14 lines
268 B
Go

//go:build !unix && (!windows || sqlite3_dotlk)
package vfs
import "os"
func osReadAt(file *os.File, p []byte, off int64) (int, error) {
return file.ReadAt(p, off)
}
func osWriteAt(file *os.File, p []byte, off int64) (int, error) {
return file.WriteAt(p, off)
}