mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 16:40:24 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			355 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			355 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright (C) 2014 Yasuhiro Matsumoto <mattn.jp@gmail.com>.
 | 
						|
// Copyright (C) 2018 G.J.R. Timmer <gjr.timmer@gmail.com>.
 | 
						|
 | 
						|
// Use of this source code is governed by an MIT-style
 | 
						|
// license that can be found in the LICENSE file.
 | 
						|
 | 
						|
// +build sqlite_introspect
 | 
						|
 | 
						|
package sqlite3
 | 
						|
 | 
						|
/*
 | 
						|
#cgo CFLAGS: -DSQLITE_INTROSPECTION_PRAGMAS
 | 
						|
#cgo LDFLAGS: -lm
 | 
						|
*/
 | 
						|
import "C"
 |