mirror of
https://github.com/ncruces/go-sqlite3.git
synced 2026-01-12 22:19: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
|
|
}
|
|
}
|