#ifndef BINARY_H #define BINARY_H #include #include /*---------------------------------------------------------------------------*/ void put_float(FILE *, const float *); void put_int (FILE *, const int *); void put_short(FILE *, const short *); void put_array(FILE *, const float *, size_t); void get_float(FILE *, float *); void get_int (FILE *, int *); void get_short(FILE *, short *); void get_array(FILE *, float *, size_t); /*---------------------------------------------------------------------------*/ #endif