mirror of
https://github.com/ncruces/go-sqlite3.git
synced 2026-01-12 05:59:14 +00:00
10 lines
92 B
Go
10 lines
92 B
Go
|
|
//go:build !go1.21
|
||
|
|
|
||
|
|
package vfs
|
||
|
|
|
||
|
|
func clear(b []byte) {
|
||
|
|
for i := range b {
|
||
|
|
b[i] = 0
|
||
|
|
}
|
||
|
|
}
|