Remove "last_set" config option. Resolves ticket:49.
[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 void put_string(FILE *, char *);
13
14 void get_float(FILE *, float *);
15 void get_index(FILE *, int   *);
16 void get_array(FILE *, float *, size_t);
17 void get_string(FILE *, char *, int);
18
19 /*---------------------------------------------------------------------------*/
20
21 #endif