1 2 3 4 5 6 7 8 9 10
#ifndef CURVE_H_ #define CURVE_H_ #include "defs.h" curve_t* curve_new(void); void curve_free(curve_t *curve); #endif //CURVE_H_