X-Git-Url: http://ftp.carnet.hr/carnet-debian/scm?a=blobdiff_plain;f=src%2Fshared%2Ftests%2Fhash_test.c;h=eca69b980b0f85a77bbdedb0cf4e70475cf1e1dd;hb=3f728675941dc69d4e544d3a880a56240a6e394a;hp=d1464cf500a362093699e9a02d3fdfd795749140;hpb=914feba5d54f979cd5d7e69c349c3d01f630042a;p=ossec-hids.git diff --git a/src/shared/tests/hash_test.c b/src/shared/tests/hash_test.c old mode 100755 new mode 100644 index d1464cf..eca69b9 --- a/src/shared/tests/hash_test.c +++ b/src/shared/tests/hash_test.c @@ -1,5 +1,6 @@ #include #include + #include "hash_op.h" @@ -9,31 +10,27 @@ int main(int argc, char **argv) char *tmp; char buf[1024]; OSHash *mhash; - + mhash = OSHash_Create(); - while(1) - { + while (1) { fgets(buf, 1024, stdin); tmp = strchr(buf, '\n'); - if(tmp) + if (tmp) { *tmp = '\0'; + } - if(strncmp(buf, "get ", 4) == 0) - { + if (strncmp(buf, "get ", 4) == 0) { printf("Getting key: '%s'\n", buf + 4); - printf("Found: '%s'\n", (char *)OSHash_Get(mhash, buf + 4)); - } - else - { + printf("Found: '%s'\n", (char *)OSHash_Get(mhash, buf + 4)); + } else { printf("Adding key: '%s'\n", buf); i = OSHash_Add(mhash, strdup(buf), strdup(buf)); - + printf("rc = %d\n", i); } } - return(0); -} + return (0); +} -/* EOF */