aboutsummaryrefslogtreecommitdiff
path: root/lib/llist.c
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2016-06-19 07:07:44 -0500
committerRob Landley <rob@landley.net>2016-06-19 07:07:44 -0500
commit57dafe3915339090c6233cc82025adf116ddf667 (patch)
tree6a419127f124a5710fe05291a988a2db95d33839 /lib/llist.c
parent848042af0144629fda0bea8b82d86e850cf29d5e (diff)
downloadtoybox-57dafe3915339090c6233cc82025adf116ddf667.tar.gz
Last commit depends on new lib code I forgot to check in. (Oops.)
Diffstat (limited to 'lib/llist.c')
-rw-r--r--lib/llist.c29
1 files changed, 29 insertions, 0 deletions
diff --git a/lib/llist.c b/lib/llist.c
index 6b4b8f2c..dbb5352a 100644
--- a/lib/llist.c
+++ b/lib/llist.c
@@ -99,3 +99,32 @@ void *dlist_terminate(void *list)
return end;
}
+
+// Find num in cache
+struct num_cache *get_num_cache(struct num_cache *cache, long long num)
+{
+ while (cache) {
+ if (num==cache->num) return cache;
+ cache = cache->next;
+ }
+
+ return 0;
+}
+
+// Uniquely add num+data to cache. Updates *cache, returns pointer to existing
+// entry if it was already there.
+struct num_cache *add_num_cache(struct num_cache **cache, long long num,
+ void *data, int len)
+{
+ struct num_cache *old = get_num_cache(*cache, num);
+
+ if (old) return old;
+
+ old = xzalloc(sizeof(struct num_cache)+len);
+ old->next = *cache;
+ old->num = num;
+ memcpy(old->data, data, len);
+ *cache = old;
+
+ return 0;
+}