updated URL of forum and table in readme file
[neverball] / share / binary.h
1 #ifndef BINARY_H
2 #define BINARY_H
3
4 #include <stdio.h>
5 #include <stdlib.h>
6
7 /*---------------------------------------------------------------------------*/
8
9 void put_float(FILE *, const float *);
10 void put_index(FILE *, const int   *);
11 void put_array(FILE *, const float *, size_t);
12
13 void get_float(FILE *, float *);
14 void get_index(FILE *, int   *);
15 void get_array(FILE *, float *, size_t);
16
17 /*---------------------------------------------------------------------------*/
18
19 #endif