Lines Matching defs:node_key
99 static int _ht_lower_strcmp(const char *node_key, const char *look_key);
100 static int _ht_strcmp(const char *node_key, const char *look_key);
625 * node_key const char * The lower-case hash-node key being compared
629 * return int <0 if node_key < look_key.
630 * 0 if node_key == look_key.
631 * >0 if node_key > look_key.
633 static int _ht_lower_strcmp(const char *node_key, const char *look_key)
635 int cn; /* The latest character from node_key[] */
638 cn = *node_key++;
654 * node_key char * The lower-case hash-node key being compared against.
657 * return int <0 if node_key < look_key.
658 * 0 if node_key == look_key.
659 * >0 if node_key > look_key.
661 static int _ht_strcmp(const char *node_key, const char *look_key)
663 return strcmp(node_key, look_key);