// Copyright (c) 2023, Marvin Borner // SPDX-License-Identifier: MIT #ifndef CALM_MAP_H #define CALM_MAP_H #include struct term *map_get(hash_t hash); void map_set(struct term *term, hash_t hash); void map_initialize(void); void map_destroy(void); #endif