about summary refs log tree commit diff
path: root/REORG.TODO/misc/tst-hsearch.c
diff options
context:
space:
mode:
Diffstat (limited to 'REORG.TODO/misc/tst-hsearch.c')
-rw-r--r--REORG.TODO/misc/tst-hsearch.c34
1 files changed, 34 insertions, 0 deletions
diff --git a/REORG.TODO/misc/tst-hsearch.c b/REORG.TODO/misc/tst-hsearch.c
new file mode 100644
index 0000000000..d390f1dcf3
--- /dev/null
+++ b/REORG.TODO/misc/tst-hsearch.c
@@ -0,0 +1,34 @@
+#include <search.h>
+#include <stdio.h>
+
+static int
+do_test (void)
+{
+  int a = 1;
+  int b = 2;
+  ENTRY i;
+  ENTRY *e;
+
+  if (hcreate (20) == 0)
+    {
+      puts ("hcreate failed");
+      return 1;
+    }
+
+  i.key = (char *) "one";
+  i.data = &a;
+  if (hsearch (i, ENTER) == NULL)
+    return 1;
+
+  i.key = (char *) "one";
+  i.data = &b;
+  e = hsearch (i, ENTER);
+  printf ("e.data = %d\n", *(int *) e->data);
+  if (*(int *) e->data != 1)
+    return 1;
+
+  return 0;
+}
+
+#define TEST_FUNCTION do_test ()
+#include "../test-skeleton.c"