libanim

view src/dynarr.h @ 20:3c2428cb38f7

added the option of lightweight pre-pass top-down recursive calculation of matrices instead of going through the existing lazy thread-specific caching algorithm.
author John Tsiombikas <nuclear@member.fsf.org>
date Mon, 09 Dec 2013 04:06:30 +0200
parents
children 60a46a122b0f
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_ */