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