git_strarray_dispose

Free the strings contained in a string array. This method should be called on git_strarray objects that were provided by the library. Not doing so, will result in a memory leak.

This does not free the git_strarray itself, since the library will never allocate that object directly itself.

extern (C) nothrow @nogc public
void
git_strarray_dispose

Parameters

array .git_strarray*

The git_strarray that contains strings to free

Meta