Example #1
0
// Ident returns the UnQLite library revision identifier.
func Ident() string {
	p := C.unqlite_lib_ident()
	return C.GoString(p)
}
Example #2
0
// Ident ...
func Ident() string {
	return C.GoString(C.unqlite_lib_ident())
}
Example #3
0
func Ident() string {
	s := C.unqlite_lib_ident()
	return C.GoString(s)
}