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; }