095195f02a3a90512bf68d4a3885fee17b03dd3b
[reactos.git] / include / wine / unicode.h
1 #ifndef _WINE_UNICODE_H
2 #define _WINE_UNICODE_H
3
4 #define strlenW(s) wcslen((const wchar_t *)s)
5 #define strcpyW(d,s) wcscpy((wchar_t *)d,(const wchar_t *)s)
6 #define strcatW(d,s) wcscat((wchar_t *)d,(const wchar_t *)s)
7 #define strstrW(d,s) wcsstr((const wchar_t *)d,(const wchar_t *)s)
8 #define strtolW(s,e,b) wcstol((const wchar_t *)s,(wchar_t **)e,b)
9 #define strchrW(s,c) wcschr((const wchar_t *)s,(wchar_t)c)
10 #define strncmpW(s1,s2,n) wcsncmp((const wchar_t *)s1,(const wchar_t *)s2,n)
11 #define tolowerW(n) towlower((wint_t)n)
12 #define atoiW(s) _wtoi((const wchar_t *)s)
13 #define atolW(s) _wtol((const wchar_t *)s)
14
15 #endif