curvedraw
view src/curvefile.h @ 9:c2008ba88d03
merged
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Sat, 19 Dec 2015 08:00:53 +0200 |
parents | |
children | 95fada20c638 |
line source
1 #ifndef CURVEFILE_H_
2 #define CURVEFILE_H_
4 #include <stdio.h>
5 #include "curve.h"
7 bool save_curves(const char *fname, const Curve * const *curves, int count);
8 bool save_curves(FILE *fp, const Curve * const *curves, int count);
10 Curve **load_curves(const char *fname, int *countret);
11 Curve **load_curves(FILE *fp, int *countret);
13 #endif // CURVEFILE_H_