[chore]: Bump modernc.org/sqlite from 1.28.0 to 1.29.2 (#2718)

This commit is contained in:
dependabot[bot] 2024-03-04 09:42:11 +00:00 committed by GitHub
commit adb4cdcf6c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
356 changed files with 2619858 additions and 1869411 deletions

4
vendor/modernc.org/libc/libc32.go generated vendored
View file

@ -36,6 +36,10 @@ func newBits(n int) (r bits) { return make(bits, (n+31)>>5) }
func (b bits) has(n int) bool { return b != nil && b[n>>5]&(1<<uint(n&31)) != 0 }
func (b bits) set(n int) { b[n>>5] |= 1 << uint(n&31) }
func Xstrchrnul(tls *TLS, s uintptr, c int32) (r uintptr) {
return x___strchrnul(tls, s, c)
}
func x___strchrnul(tls *TLS, s uintptr, c int32) (r uintptr) {
var k types.Size_t
var w uintptr