mirror of
https://github.com/SkinnyMind/libgit2dart.git
synced 2025-05-04 20:29:08 -04:00
6 lines
180 B
Dart
6 lines
180 B
Dart
import 'dart:ffi';
|
|
import 'libgit2_bindings.dart';
|
|
import '../util.dart';
|
|
|
|
/// Get the object type of an object.
|
|
int type(Pointer<git_object> obj) => libgit2.git_object_type(obj);
|