#ifndef interval_io_H #define interval_io_H /* Input/output for {interval_t} values. */ /* Last edited on 2024-11-15 19:13:15 by stolfi */ #include #include #include void interval_print(FILE *wr, interval_t *X); /* Writes {X} to {wr}, with some default format. */ void interval_gen_print(FILE *wr, interval_t *X, char *fmt, char *lp, char *sep, char *rp); /* Writes {X} to {wr}, bracketed by {lp,rp} and with the two endpoints separated by {sep}. When NULL, they default to "%24.16e", "[", " ", and "]", respectively. */ #endif