Go to the source code of this file.
Classes |
struct | Curl_tree |
Defines |
#define | Curl_splaycomparekeys(i, j) |
#define | Curl_splayprint(x, y, z) Curl_nop_stmt |
Functions |
struct Curl_tree * | Curl_splay (struct timeval i, struct Curl_tree *t) |
struct Curl_tree * | Curl_splaygetbest (struct timeval key, struct Curl_tree *t, struct Curl_tree **removed) |
struct Curl_tree * | Curl_splayinsert (struct timeval key, struct Curl_tree *t, struct Curl_tree *newnode) |
int | Curl_splayremovebyaddr (struct Curl_tree *t, struct Curl_tree *removenode, struct Curl_tree **newroot) |
Define Documentation
Value:( ((i.tv_sec) < (j.tv_sec)) ? -1 : \
( ((i.tv_sec) > (j.tv_sec)) ? 1 : \
( ((i.tv_usec) < (j.tv_usec)) ? -1 : \
( ((i.tv_usec) > (j.tv_usec)) ? 1 : 0))))
Definition at line 55 of file splay.h.
Function Documentation