.examples
.github
alerting
client
config
controller
core
docs
jsonpath
metric
pattern
security
storage
test
util
vendor
github.com
go.etcd.io
golang.org
google.golang.org
gopkg.in
lukechampine.com
modernc.org
cc
ccgo
libc
mathutil
memory
opt
sqlite
lib
capi_darwin_amd64.go
capi_darwin_arm64.go
capi_freebsd_amd64.go
capi_linux_386.go
capi_linux_amd64.go
capi_linux_arm.go
capi_linux_arm64.go
capi_linux_s390x.go
capi_windows_386.go
capi_windows_amd64.go
hooks.go
mutex.go
sqlite_darwin_amd64.go
sqlite_darwin_arm64.go
sqlite_freebsd_amd64.go
sqlite_linux_386.go
sqlite_linux_amd64.go
sqlite_linux_arm.go
sqlite_linux_arm64.go
sqlite_linux_s390x.go
sqlite_windows_386.go
sqlite_windows_amd64.go
AUTHORS
CONTRIBUTORS
LICENSE
Makefile
README.md
SQLITE-LICENSE
doc.go
generator.go
mutex.go
rlimit.go
rlimit_freebsd.go
sqlite.go
sqlite_go18.go
unconvert.sh
strutil
token
modules.txt
watchdog
web
.dockerignore
.gitattributes
.gitignore
Dockerfile
LICENSE
Makefile
README.md
config.yaml
go.mod
go.sum
main.go
15 lines
442 B
Go
15 lines
442 B
Go
// Copyright 2019 The Sqlite Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package sqlite3
|
|
|
|
import (
|
|
"modernc.org/libc"
|
|
)
|
|
|
|
// Format and write a message to the log if logging is enabled.
|
|
func X__ccgo_sqlite3_log(t *libc.TLS, iErrCode int32, zFormat uintptr, va uintptr) { /* sqlite3.c:29405:17: */
|
|
libc.X__ccgo_sqlite3_log(t, iErrCode, zFormat, va)
|
|
}
|