diff options
Diffstat (limited to 'src/pulsecore/hashmap.c')
| -rw-r--r-- | src/pulsecore/hashmap.c | 9 | 
1 files changed, 9 insertions, 0 deletions
| diff --git a/src/pulsecore/hashmap.c b/src/pulsecore/hashmap.c index b549cb1c..1fac97eb 100644 --- a/src/pulsecore/hashmap.c +++ b/src/pulsecore/hashmap.c @@ -279,6 +279,15 @@ void* pa_hashmap_first(pa_hashmap *h) {      return h->iterate_list_head->value;  } +void* pa_hashmap_last(pa_hashmap *h) { +    pa_assert(h); + +    if (!h->iterate_list_tail) +        return NULL; + +    return h->iterate_list_tail->value; +} +  void* pa_hashmap_steal_first(pa_hashmap *h) {      void *data; | 
