#include <stdio.h>
#include <stdlib.h>
#include <search.h>
#include <assert.h>
char *data[] = { "alpha", "bravo", "charlie", "delta",
      "echo", "foxtrot", "golf", "hotel", "india", "juliet",
      "kilo", "lima", "mike", "november", "oscar", "papa",
      "quebec", "romeo", "sierra", "tango", "uniform",
      "victor", "whisky", "x-ray", "yankee", "zulu"
       };
int
main(void)
{
    ENTRY e, **ep;
    struct hsearch_data *htab;
    int i;
    int resultOfHcreate_r;
    resultOfHcreate_r=hcreate_r(30,htab);
    assert(resultOfHcreate_r!=0);
    hdestroy_r(htab);
    exit(EXIT_SUCCESS);
}
error in hcreate_r
How to use this hcreate_r?
and other question is that :
Could you privde the GNU extension C library examples ? I think the document of GNU extension C library is not enough knowledge to write.
and I have many questions of how to use the extension C library .
 
     
     
    