nuclear@6: #ifndef CURVEFILE_H_ nuclear@6: #define CURVEFILE_H_ nuclear@6: nuclear@6: #include nuclear@6: #include "curve.h" nuclear@6: nuclear@6: bool save_curves(const char *fname, const Curve * const *curves, int count); nuclear@6: bool save_curves(FILE *fp, const Curve * const *curves, int count); nuclear@6: nuclear@6: Curve **load_curves(const char *fname, int *countret); nuclear@6: Curve **load_curves(FILE *fp, int *countret); nuclear@6: nuclear@6: #endif // CURVEFILE_H_