sqlite3_opt_secure_delete_fast.go 399 B

12345678910111213141516
  1. // Copyright (C) 2019 Yasuhiro Matsumoto <mattn.jp@gmail.com>.
  2. // Copyright (C) 2018 G.J.R. Timmer <gjr.timmer@gmail.com>.
  3. //
  4. // Use of this source code is governed by an MIT-style
  5. // license that can be found in the LICENSE file.
  6. //go:build sqlite_secure_delete_fast
  7. // +build sqlite_secure_delete_fast
  8. package sqlite3
  9. /*
  10. #cgo CFLAGS: -DSQLITE_SECURE_DELETE=FAST
  11. #cgo LDFLAGS: -lm
  12. */
  13. import "C"