mirror of
https://github.com/peter-tanner/Systems-programming-labs.git
synced 2024-11-30 09:00:30 +08:00
12 lines
235 B
C
12 lines
235 B
C
|
#include <stdlib.h>
|
||
|
#include <stdio.h>
|
||
|
#include <stdbool.h>
|
||
|
#include <time.h>
|
||
|
#include <sys/time.h>
|
||
|
|
||
|
#include "hashtable.h"
|
||
|
|
||
|
#define TEST_LENGTH 100000 // SOME LARGE VALUE.
|
||
|
#define STRING_LENGTH 127
|
||
|
#define BENCHMARK_ITERATIONS 10000
|