Skip to content

Instantly share code, notes, and snippets.

@arn-e
Last active December 11, 2015 11:08
Show Gist options
  • Save arn-e/4591249 to your computer and use it in GitHub Desktop.
Save arn-e/4591249 to your computer and use it in GitHub Desktop.
jintArray_struct.c
#include <stdio.h>
#include <stdlib.h>
struct jintArray
{
int size;
int *elements;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment