repo.or.cz
/
isl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
split off type declarations for isl_map and isl_set to separate files
[isl.git]
/
include
/
isl
/
map_type.h
blob
1ba26e0d0400f9a774635a2fff62846a445b4bd0
1
#ifndef ISL_MAP_TYPE_H
2
#define ISL_MAP_TYPE_H
3
4
#if defined(__cplusplus)
5
extern
"C"
{
6
#endif
7
8
struct
isl_basic_map
;
9
typedef
struct
isl_basic_map isl_basic_map
;
10
struct
isl_map
;
11
typedef
struct
isl_map isl_map
;
12
13
#ifndef isl_basic_set
14
struct
isl_basic_set
;
15
typedef
struct
isl_basic_set isl_basic_set
;
16
#endif
17
#ifndef isl_set
18
struct
isl_set
;
19
typedef
struct
isl_set isl_set
;
20
#endif
21
22
#if defined(__cplusplus)
23
}
24
#endif
25
26
#endif