/usr/include/isl/maybe_templ.h is in libisl-0.18-dev 0.18-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 | #include <isl/ctx.h>
#include <isl/maybe.h>
/* A structure that possibly contains a pointer to an object of type ISL_TYPE.
* The pointer in "value" is only valid if "valid" is isl_bool_true.
* Otherwise, "value" is set to NULL.
*/
struct ISL_MAYBE(ISL_TYPE) {
isl_bool valid;
ISL_TYPE *value;
};
typedef struct ISL_MAYBE(ISL_TYPE) ISL_MAYBE(ISL_TYPE);
|