blob: b2674220c0acdead39c4314d611cac95ada10b5a (
plain) (
tree)
|
|
#include <stdio.h>
#include <time.h>
#include "common.h"
#include "structs.h"
#include "nem_ull.h"
int main(int argc, char * argv[]){
struct data * d;
struct front_item * b;
if(argc!=2){
printf("Wrong number of arguments!\n");
printf("Example usage: %s data_file\n",argv[0]);
return 0;
}
d = input(argv[1]);
clock_t t = clock();
b = nem_ull(d);
t = clock() - t;
printf("%f,%d\n",((float)t)/CLOCKS_PER_SEC,len_front(b));
print_front(b);
free_front(b);
free_data(d);
return 0;
}
|