mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-12-16 22:23:01 -06:00
[chore]: Bump modernc.org/sqlite from 1.28.0 to 1.29.2 (#2718)
This commit is contained in:
parent
ea0efb8094
commit
adb4cdcf6c
356 changed files with 2619858 additions and 1869411 deletions
4
vendor/modernc.org/libc/libc32.go
generated
vendored
4
vendor/modernc.org/libc/libc32.go
generated
vendored
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue