Correct logic of BSP back/front tests
[neverball] / share / binary.h
index 775d7ff..7122d12 100644 (file)
@@ -8,12 +8,17 @@
 
 void put_float(FILE *, const float *);
 void put_index(FILE *, const int   *);
+void put_short(FILE *, const short *);
 void put_array(FILE *, const float *, size_t);
 
 void get_float(FILE *, float *);
 void get_index(FILE *, int   *);
+void get_short(FILE *, short *);
 void get_array(FILE *, float *, size_t);
 
+void put_string(FILE *fout, const char *);
+void get_string(FILE *fin, char *, int );
+
 /*---------------------------------------------------------------------------*/
 
 #endif