Skip to content

Instantly share code, notes, and snippets.

@arn-e
Last active December 11, 2015 11:08
Show Gist options
  • Save arn-e/4591274 to your computer and use it in GitHub Desktop.
Save arn-e/4591274 to your computer and use it in GitHub Desktop.
env_functions_ReleaseIntArrayElements.c
int *ReleaseIntArrayElementsFunc(struct jintArray jvm_array, int *native_array)
{
free(jvm_array.elements);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment