1 /*
2  * Use of this software is governed by the MIT license
3  */
4 
5 #ifndef ISL_FIXED_BOX_H
6 #define ISL_FIXED_BOX_H
7 
8 #include <isl/ctx.h>
9 #include <isl/val_type.h>
10 #include <isl/space_type.h>
11 #include <isl/aff_type.h>
12 
13 #if defined(__cplusplus)
14 extern "C" {
15 #endif
16 
17 struct isl_fixed_box;
18 typedef struct isl_fixed_box isl_fixed_box;
19 
20 isl_ctx *isl_fixed_box_get_ctx(__isl_keep isl_fixed_box *box);
21 __isl_give isl_space *isl_fixed_box_get_space(__isl_keep isl_fixed_box *box);
22 isl_bool isl_fixed_box_is_valid(__isl_keep isl_fixed_box *box);
23 __isl_give isl_multi_aff *isl_fixed_box_get_offset(
24 	__isl_keep isl_fixed_box *box);
25 __isl_give isl_multi_val *isl_fixed_box_get_size(__isl_keep isl_fixed_box *box);
26 
27 __isl_give isl_fixed_box *isl_fixed_box_copy(__isl_keep isl_fixed_box *box);
28 __isl_null isl_fixed_box *isl_fixed_box_free(__isl_take isl_fixed_box *box);
29 
30 #if defined(__cplusplus)
31 }
32 #endif
33 
34 #endif
35