From 6fc52906e5e5c16c24ace013b05ebcabf9d5fdd2 Mon Sep 17 00:00:00 2001 From: Timo Kreuzer Date: Wed, 15 Jun 2011 11:42:37 +0000 Subject: [PATCH] forgot to commit this file svn path=/trunk/; revision=52243 --- reactos/include/reactos/wcsfuncs.h | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 reactos/include/reactos/wcsfuncs.h diff --git a/reactos/include/reactos/wcsfuncs.h b/reactos/include/reactos/wcsfuncs.h new file mode 100644 index 00000000000..4357331f9f9 --- /dev/null +++ b/reactos/include/reactos/wcsfuncs.h @@ -0,0 +1,23 @@ +/* + PROJECT: ReactOS + LICENSE: GPL v2 or any later version + FILE: include/host/wcsfuncs.h + PURPOSE: Header for the "host_wcsfuncs" static library + COPYRIGHT: Copyright 2008 Colin Finck +*/ + +#ifndef _HOST_WCSFUNCS_H +#define _HOST_WCSFUNCS_H + +/* Map str*W functions to wcs* function */ + +#define isspaceW iswspace +#define strchrW wcschr +#define strcmpiW _wcsicmp +#define strcpyW wcscpy +#define strlenW wcslen +#define strncmpW wcsncmp +#define strtolW wcstol +#define strtoulW wcstoul + +#endif