git_blob_data_is_binary

Determine if the given content is most certainly binary or not; this is the same mechanism used by git_blob_is_binary but only looking at raw data.

extern (C) nothrow @nogc public
int
git_blob_data_is_binary
(
const(char)* data
,
size_t len
)

Parameters

data const(char)*

The blob data which content should be analyzed

len size_t

The length of the data

Return Value

Type: int

1 if the content of the blob is detected as binary; 0 otherwise.

Meta