forgot to commit this file
authorTimo Kreuzer <timo.kreuzer@reactos.org>
Wed, 15 Jun 2011 11:42:37 +0000 (11:42 +0000)
committerTimo Kreuzer <timo.kreuzer@reactos.org>
Wed, 15 Jun 2011 11:42:37 +0000 (11:42 +0000)
svn path=/trunk/; revision=52243

reactos/include/reactos/wcsfuncs.h [new file with mode: 0644]

diff --git a/reactos/include/reactos/wcsfuncs.h b/reactos/include/reactos/wcsfuncs.h
new file mode 100644 (file)
index 0000000..4357331
--- /dev/null
@@ -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 <mail@colinfinck.de>
+*/
+
+#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