summaryrefslogtreecommitdiffstats
path: root/ref.h
diff options
context:
space:
mode:
Diffstat (limited to 'ref.h')
-rw-r--r--ref.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/ref.h b/ref.h
deleted file mode 100644
index 1bc2a5c..0000000
--- a/ref.h
+++ /dev/null
@@ -1,16 +0,0 @@
-#pragma once
-
-#include "link.h"
-
-struct ref {
- void *data;
-
- struct link link;
-};
-
-struct ref *ref_init(void *data);
-void ref_free(struct ref *ref);
-
-void refs_free(struct link *head);
-int refs_incl(struct link *head, void *data);
-void refs_rm(struct link *head, void *data);