summaryrefslogtreecommitdiffstats
path: root/runtime/unicode-helper.h
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/unicode-helper.h')
-rw-r--r--runtime/unicode-helper.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/runtime/unicode-helper.h b/runtime/unicode-helper.h
index fe4cc1f8..5289da3f 100644
--- a/runtime/unicode-helper.h
+++ b/runtime/unicode-helper.h
@@ -31,6 +31,11 @@
#include <string.h>
+static inline char* ustrncpy(uchar *psz1, uchar *psz2, size_t len)
+{
+ return strncpy((char*) psz1, (char*) psz2, len);
+}
+
static inline int ustrcmp(uchar *psz1, uchar *psz2)
{
return strcmp((char*) psz1, (char*) psz2);