isl_tab_detect_redundant: return status instead of isl_tab *
[isl.git] / isl_scan.h
blobd25e5b536da6a09e758864ac4f5976dc488e6454
1 #ifndef ISL_SCAN_H
2 #define ISL_SCAN_H
4 #include "isl_set.h"
5 #include "isl_vec.h"
7 struct isl_scan_callback {
8 int (*add)(struct isl_scan_callback *cb, __isl_take isl_vec *sample);
9 };
11 int isl_basic_set_scan(struct isl_basic_set *bset,
12 struct isl_scan_callback *callback);
14 #endif