Lines Matching defs:look_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);
627 * look_key const char * The lookup key.
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)
636 int cl; /* The latest character from look_key[] */
639 cl = *look_key++;
655 * look_key char * The lookup key.
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);