You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and dots ('.'), can be up to 35 characters long. Letters must be lowercase.
24 lines
403 B
24 lines
403 B
#include "stretchy_buffer.h" |
|
#include <assert.h> |
|
|
|
int main(int arg, char **argv) |
|
{ |
|
int i; |
|
int *arr = NULL; |
|
|
|
for (i=0; i < 1000000; ++i) |
|
sb_push(arr, i); |
|
|
|
assert(sb_count(arr) == 1000000); |
|
for (i=0; i < 1000000; ++i) |
|
assert(arr[i] == i); |
|
|
|
sb_free(arr); |
|
arr = NULL; |
|
|
|
for (i=0; i < 1000; ++i) |
|
sb_add(arr, 1000); |
|
assert(sb_count(arr) == 1000000); |
|
|
|
return 0; |
|
} |