/usr/include/isl/multi.h is in libisl-dev 0.08-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | #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
|