コード例 #1
0
ファイル: gounqlite.go プロジェクト: LonelyPale/gounqlite
// Ident returns the UnQLite library revision identifier.
func Ident() string {
	p := C.unqlite_lib_ident()
	return C.GoString(p)
}
コード例 #2
0
// Ident ...
func Ident() string {
	return C.GoString(C.unqlite_lib_ident())
}
コード例 #3
0
ファイル: unqlite.go プロジェクト: LonelyPale/unqlite-2
func Ident() string {
	s := C.unqlite_lib_ident()
	return C.GoString(s)
}