Home | History | Annotate | Download | only in stdlib

Lines Matching defs:key

18     char	  *key;
28 char *key = (char *)vkey;
36 if ((r = (*compar)(key, (*rootp)->key)) == 0) /* T2: */
42 q = malloc(sizeof(node)); /* T5: key not found */
45 q->key = key; /* initialize new node */
51 /* delete node with given key */
57 char *key = (char *)vkey;
65 while ((cmp = (*compar)(key, (*rootp)->key)) != 0) {
71 return ((void *)0); /* key not found */