summaryrefslogtreecommitdiff
path: root/strings.h
diff options
context:
space:
mode:
Diffstat (limited to 'strings.h')
-rw-r--r--strings.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/strings.h b/strings.h
index 8cf629255..f3cd34d1d 100644
--- a/strings.h
+++ b/strings.h
@@ -1,6 +1,14 @@
#ifndef STRINGS_H
#define STRINGS_H
+static inline char* InlineString(char* buf, uint16 string)
+{
+ *buf++ = '\x81';
+ *buf++ = string & 0xFF;
+ *buf++ = string >> 8;
+ return buf;
+}
+
char *GetString(char *buffr, uint16 string);
void InjectDParam(int amount);