// Ident returns the UnQLite library revision identifier. func Ident() string { p := C.unqlite_lib_ident() return C.GoString(p) }
// Ident ... func Ident() string { return C.GoString(C.unqlite_lib_ident()) }
func Ident() string { s := C.unqlite_lib_ident() return C.GoString(s) }