summaryrefslogtreecommitdiff
path: root/inc
diff options
context:
space:
mode:
Diffstat (limited to 'inc')
-rw-r--r--inc/pack.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/inc/pack.h b/inc/pack.h
index 0979877..ca96749 100644
--- a/inc/pack.h
+++ b/inc/pack.h
@@ -17,4 +17,10 @@ int readint(char **cp);
/* the given pointer is incremented */
void writeint(int in, char **cp);
+/* reads a teworlds string from given ints */
+void intstostr(const int *ints, int num, char *str);
+
+/* writes a teeworlds string into ints */
+void strtoint(const char *str, int num, int *ints);
+
#endif // PACK_H