Remove trailing whitespace from source code.
[neverball] / share / binary.h
index 775d7ff..966f8e7 100644 (file)
@@ -9,10 +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);
+void get_string(FILE *, char *, int);
 
 /*---------------------------------------------------------------------------*/