summaryrefslogtreecommitdiff
path: root/strings.h
diff options
context:
space:
mode:
Diffstat (limited to 'strings.h')
-rw-r--r--strings.h9
1 files changed, 1 insertions, 8 deletions
diff --git a/strings.h b/strings.h
index 0aa105545..dd4fd179d 100644
--- a/strings.h
+++ b/strings.h
@@ -3,14 +3,7 @@
#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 *InlineString(char *buf, uint16 string);
char *GetString(char *buffr, uint16 string, const char* last);
extern char _userstring[128];