aboutsummaryrefslogtreecommitdiff
path: root/src/tests/hashtest2.cpp
blob: 74700fd9b64bf71c08cc40c83955965c84143a6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "hash.h"
#include <string.h>

int main()
{
	char *a, *b;
	a = new char[10];
	b = new char[10];
	strcpy( a, "Hey there");
	strcpy( b, "Hey there");
	printf("Same:  %s\n", __cmpHashKeys( a, b )?"yes":"no");

	return 0;
}