nexmon – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 /*
2 * Copyright 2008-2009 Katholieke Universiteit Leuven
3 *
4 * Use of this software is governed by the GNU LGPLv2.1 license
5 *
6 * Written by Sven Verdoolaege, K.U.Leuven, Departement
7 * Computerwetenschappen, Celestijnenlaan 200A, B-3001 Leuven, Belgium
8 */
9  
10 #ifndef ISL_SCAN_H
11 #define ISL_SCAN_H
12  
13 #include <isl/set.h>
14 #include <isl/vec.h>
15  
16 struct isl_scan_callback {
17 int (*add)(struct isl_scan_callback *cb, __isl_take isl_vec *sample);
18 };
19  
20 int isl_basic_set_scan(struct isl_basic_set *bset,
21 struct isl_scan_callback *callback);
22 int isl_set_scan(__isl_take isl_set *set, struct isl_scan_callback *callback);
23  
24 #endif