blob: b9bb1164a19f2d9e694795c1f73ff7913351bc51 [file] [log] [blame]
#ifndef ISL_MULTI_H
#define ISL_MULTI_H
#include <isl/list.h>
#if defined(__cplusplus)
extern "C" {
#endif
#define ISL_DECLARE_MULTI(BASE) \
__isl_give isl_multi_##BASE *isl_multi_##BASE##_from_##BASE##_list( \
__isl_take isl_space *space, __isl_take isl_##BASE##_list *list); \
const char *isl_multi_##BASE##_get_tuple_name( \
__isl_keep isl_multi_##BASE *multi, enum isl_dim_type type);
ISL_DECLARE_MULTI(aff)
#if defined(__cplusplus)
}
#endif
#endif