[chore]: Bump modernc.org/sqlite from 1.26.0 to 1.27.0 (#2339)

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
dependabot[bot] 2023-11-06 14:40:53 +00:00 committed by GitHub
commit 28f85db30a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
20 changed files with 526 additions and 143 deletions

View file

@ -460,6 +460,10 @@ func Xisprint(tls *TLS, c int32) int32 { /* isprint.c:4:5: */
return Bool32(uint32(c)-uint32(0x20) < uint32(0x5f))
}
func X__builtin_isprint(tls *TLS, c int32) int32 { /* isprint.c:4:5: */
return Bool32(uint32(c)-uint32(0x20) < uint32(0x5f))
}
func X__isprint_l(tls *TLS, c int32, l locale_t) int32 { /* isprint.c:9:5: */
return Xisprint(tls, c)
}