#include #include module Bindings.Libgit2.Blob where #strict_import import Bindings.Libgit2.Common import Bindings.Libgit2.Types import Bindings.Libgit2.Oid import Bindings.Libgit2.Object #cinline git_blob_lookup , Ptr (Ptr ) -> Ptr -> Ptr -> IO (CInt) #cinline git_blob_lookup_prefix , Ptr (Ptr ) -> Ptr -> Ptr -> CUInt -> IO (CInt) #cinline git_blob_free , Ptr -> IO () #ccall git_blob_rawcontent , Ptr -> IO (Ptr ()) #ccall git_blob_rawsize , Ptr -> IO (CSize) #ccall git_blob_create_fromfile , Ptr -> Ptr -> CString -> IO (CInt) #ccall git_blob_create_fromdisk , Ptr -> Ptr -> CString -> IO (CInt) #ccall git_blob_create_frombuffer , Ptr -> Ptr -> Ptr () -> CSize -> IO (CInt)