Sync up to trunk head.
[reactos.git] / include / host / wcsfuncs.h
1 /*
2 PROJECT: ReactOS
3 LICENSE: GPL v2 or any later version
4 FILE: include/host/wcsfuncs.h
5 PURPOSE: Header for the "host_wcsfuncs" static library
6 COPYRIGHT: Copyright 2008 Colin Finck <mail@colinfinck.de>
7 */
8
9 #ifndef _HOST_WCSFUNCS_H
10 #define _HOST_WCSFUNCS_H
11
12 #ifdef USE_HOST_WCSFUNCS
13 /* Function prototypes */
14
15 #else
16 /* Map str*W functions to wcs* function */
17
18 #define isspaceW iswspace
19 #define strchrW wcschr
20 #define strcmpiW _wcsicmp
21 #define strcpyW wcscpy
22 #define strlenW wcslen
23 #define strncmpW wcsncmp
24 #define strtolW wcstol
25 #define strtoulW wcstoul
26
27 #endif
28
29 #endif