9 /* Compare the prefix of "s" to "prefix" up to the length of "prefix".
11 static inline int prefixcmp(const char *s
, const char *prefix
)
13 return strncmp(s
, prefix
, strlen(prefix
));
16 __isl_give isl_multi_val
*ppcg_multi_val_from_int(__isl_take isl_space
*space
,
18 __isl_give isl_multi_val
*ppcg_multi_val_from_int_list(
19 __isl_take isl_space
*space
, int *list
);
20 __isl_give isl_multi_pw_aff
*ppcg_size_from_extent(__isl_take isl_set
*set
);