13 lines
320 B
C
13 lines
320 B
C
#include "gryphn_array_list.h"
|
|
#include <stdlib.h>
|
|
|
|
GN_ARRAY_LIST_DEFINITION(uint32_t)
|
|
GN_ARRAY_LIST_DEFINITION(int)
|
|
|
|
// note this is annoying but I dont wana warnings from this file
|
|
void tester() {
|
|
uint32_tArrayList list = uint32_tArrayListCreate();
|
|
uint32_tArrayListResize(list, 1);
|
|
void* m = malloc(0);
|
|
}
|