Skip to content
Snippets Groups Projects
Commit 973d63f4 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

one modified proto and one removed proto

parent 405d98ee
No related branches found
No related tags found
No related merge requests found
......@@ -34,15 +34,19 @@ struct Curl_tree {
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 *new);
#if 0
struct Curl_tree *Curl_splayremove(int key, struct Curl_tree *t,
struct Curl_tree **removed);
#endif
struct Curl_tree *Curl_splaygetbest(int key, struct Curl_tree *t,
struct Curl_tree **removed);
struct Curl_tree *Curl_splayremovebyaddr(struct Curl_tree *t,
struct Curl_tree *remove);
int Curl_splayremovebyaddr(struct Curl_tree *t,
struct Curl_tree *remove,
struct Curl_tree **newroot);
#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
#define Curl_splayprint(x,y,z)
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment