From 6dff7b9ee671925f8c5dae1cd34bdc55f3236c38 Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Sun, 7 Nov 1999 17:28:56 +0000 Subject: Configurability backbone, and first use of it [originally from svn r275] --- ustring.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'ustring.c') diff --git a/ustring.c b/ustring.c index e6e648d..f00a476 100644 --- a/ustring.c +++ b/ustring.c @@ -39,6 +39,10 @@ int ustrlen(wchar_t *s) { return len; } +wchar_t *uadv(wchar_t *s) { + return s + 1 + ustrlen(s); +} + wchar_t *ustrcpy(wchar_t *dest, wchar_t *source) { wchar_t *ret = dest; do { -- cgit v1.1