goat3d

view libs/anim/dynarr.h @ 54:dad392c710df

added copyright headers and license files + readme
author John Tsiombikas <nuclear@member.fsf.org>
date Thu, 17 Apr 2014 08:50:36 +0300
parents 4deb0b12fe14
children
line source
1 #ifndef DYNARR_H_
2 #define DYNARR_H_
4 void *dynarr_alloc(int elem, int szelem);
5 void dynarr_free(void *da);
6 void *dynarr_resize(void *da, int elem);
8 int dynarr_empty(void *da);
9 int dynarr_size(void *da);
11 /* stack semantics */
12 void *dynarr_push(void *da, void *item);
13 void *dynarr_pop(void *da);
16 #endif /* DYNARR_H_ */