aboutsummaryrefslogtreecommitdiff
path: root/inc/map.h
blob: 84d1ae53ad37b454a94bc1b1c9bb0d6647cde9a4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright (c) 2023, Marvin Borner <dev@marvinborner.de>
// SPDX-License-Identifier: MIT

#ifndef SHARING_MAP_H
#define SHARING_MAP_H

#include <lib/hash.h>

struct term *map_get(hash_t hash);
void map_set(struct term *term, hash_t hash);
void map_delete(struct term *term);
void map_initialize(void);
void map_destroy(void);
void map_foreach(void (*func)(struct term *));

#endif