mirror of
https://review.haiku-os.org/buildtools
synced 2025-02-07 14:34:51 +01:00
27 lines
847 B
C
27 lines
847 B
C
#ifndef ISL_HMAP_MAP_BASIC_SET_H
|
|
#define ISL_HMAP_MAP_BASIC_SET_H
|
|
|
|
#include <isl/hash.h>
|
|
#include <isl/map.h>
|
|
#include <isl/set.h>
|
|
|
|
struct isl_hmap_map_basic_set {
|
|
struct isl_hash_table table;
|
|
};
|
|
typedef struct isl_hmap_map_basic_set isl_hmap_map_basic_set;
|
|
|
|
__isl_give isl_hmap_map_basic_set *isl_hmap_map_basic_set_alloc( isl_ctx *ctx,
|
|
int min_size);
|
|
void isl_hmap_map_basic_set_free(isl_ctx *ctx,
|
|
__isl_take isl_hmap_map_basic_set *hmap);
|
|
|
|
int isl_hmap_map_basic_set_has(isl_ctx *ctx,
|
|
__isl_keep isl_hmap_map_basic_set *hmap, __isl_keep isl_map *key);
|
|
__isl_give isl_basic_set *isl_hmap_map_basic_set_get(isl_ctx *ctx,
|
|
__isl_keep isl_hmap_map_basic_set *hmap, __isl_take isl_map *key);
|
|
int isl_hmap_map_basic_set_set(isl_ctx *ctx,
|
|
__isl_keep isl_hmap_map_basic_set *hmap, __isl_take isl_map *key,
|
|
__isl_take isl_basic_set *val);
|
|
|
|
#endif
|