s/TRANSLATORS/Translators/ in xgettext comments
[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_short(FILE *, const short *);
12 void put_array(FILE *, const float *, size_t);
13
14 void get_float(FILE *, float *);
15 void get_index(FILE *, int   *);
16 void get_short(FILE *, short *);
17 void get_array(FILE *, float *, size_t);
18
19 void put_string(FILE *fout, const char *);
20 void get_string(FILE *fin, char *, int );
21
22 /*---------------------------------------------------------------------------*/
23
24 #endif