isl_hash_table: grow table when we run out of entries
[isl.git] / cat.c
blob09a4a10d4c3dc58d3b781523683d0b23881ecead
1 #include <isl_map.h>
3 int main(int argc, char **argv)
5 struct isl_ctx *ctx;
6 struct isl_map *map;
8 ctx = isl_ctx_alloc();
10 map = isl_map_read_from_file(ctx, stdin, -1);
11 isl_map_print(map, stdout, 0, ISL_FORMAT_ISL);
12 isl_map_free(map);
14 isl_ctx_free(ctx);
16 return 0;