mirror of
https://github.com/ncruces/go-sqlite3.git
synced 2026-01-11 21:49:13 +00:00
14 lines
268 B
Go
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)
|
||
|
|
}
|