1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04:00

one modified proto and one removed proto

This commit is contained in:
Daniel Stenberg 2006-05-27 22:26:41 +00:00
parent 405d98ee63
commit 973d63f4f2

View File

@ -34,15 +34,19 @@ struct Curl_tree {
struct Curl_tree *Curl_splay(int i, struct Curl_tree *t); struct Curl_tree *Curl_splay(int i, struct Curl_tree *t);
struct Curl_tree *Curl_splayinsert(int key, struct Curl_tree *t, struct Curl_tree *Curl_splayinsert(int key, struct Curl_tree *t,
struct Curl_tree *new); struct Curl_tree *new);
#if 0
struct Curl_tree *Curl_splayremove(int key, struct Curl_tree *t, struct Curl_tree *Curl_splayremove(int key, struct Curl_tree *t,
struct Curl_tree **removed); struct Curl_tree **removed);
#endif
struct Curl_tree *Curl_splaygetbest(int key, struct Curl_tree *t, struct Curl_tree *Curl_splaygetbest(int key, struct Curl_tree *t,
struct Curl_tree **removed); struct Curl_tree **removed);
struct Curl_tree *Curl_splayremovebyaddr(struct Curl_tree *t, int Curl_splayremovebyaddr(struct Curl_tree *t,
struct Curl_tree *remove); struct Curl_tree *remove,
struct Curl_tree **newroot);
#ifdef CURLDEBUG #ifdef CURLDEBUG
int Curl_splayprint(struct Curl_tree * t, int d, char output); void Curl_splayprint(struct Curl_tree * t, int d, char output);
#else #else
#define Curl_splayprint(x,y,z) #define Curl_splayprint(x,y,z)
#endif #endif