add 'skip value' goals, bumb sol version
[neverball] / share / binary.h
index a0c32b1..966f8e7 100644 (file)
@@ -9,13 +9,12 @@
 void put_float(FILE *, const float *);
 void put_index(FILE *, const int   *);
 void put_array(FILE *, const float *, size_t);
+void put_string(FILE *, char *);
 
 void get_float(FILE *, float *);
 void get_index(FILE *, int   *);
 void get_array(FILE *, float *, size_t);
-
-/*needed for old-style replay compatability*/
-void get_short(FILE *, short *);
+void get_string(FILE *, char *, int);
 
 /*---------------------------------------------------------------------------*/