2017-05-22 13:26:21 +00:00
|
|
|
#include <stdio.h>
|
2017-05-23 08:45:31 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <assert.h>
|
2017-05-22 13:26:21 +00:00
|
|
|
|
|
|
|
int main(int argc, char* argv[]){
|
2017-05-23 08:45:31 +00:00
|
|
|
|
|
|
|
#define STACK_TYPE double
|
|
|
|
#include "source/handystack.h"
|
|
|
|
double_stack s = new_double_stack();
|
|
|
|
print_double_stack(s);
|
|
|
|
|
2017-05-22 13:26:21 +00:00
|
|
|
}
|