isl/val.h: extract out isl/val_type.h
[isl.git] / include / isl / stride_info.h
blob66fa0e133ac978ac7eab38cff9b1c5d416d3563c
1 /*
2 * Use of this software is governed by the MIT license
3 */
5 #ifndef ISL_STRIDE_INFO_H
6 #define ISL_STRIDE_INFO_H
8 #include <isl/val.h>
9 #include <isl/aff_type.h>
11 #if defined(__cplusplus)
12 extern "C" {
13 #endif
15 struct isl_stride_info;
16 typedef struct isl_stride_info isl_stride_info;
18 __isl_give isl_val *isl_stride_info_get_stride(__isl_keep isl_stride_info *si);
19 __isl_give isl_aff *isl_stride_info_get_offset(__isl_keep isl_stride_info *si);
20 __isl_null isl_stride_info *isl_stride_info_free(
21 __isl_take isl_stride_info *si);
23 #if defined(__cplusplus)
25 #endif
27 #endif