Skip to content

Instantly share code, notes, and snippets.

@vasc
Created October 11, 2010 11:54
Show Gist options
  • Save vasc/620411 to your computer and use it in GitHub Desktop.
Save vasc/620411 to your computer and use it in GitHub Desktop.
typedef struct generic_list_s{
struct list_bucket** array;
int start;
int count;
int real_count;
int capacity;
} list;
struct list_bucket
{
short type;
void* element;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment