mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 17:05:46 +00:00
forgot to commit this file
svn path=/trunk/; revision=52243
This commit is contained in:
parent
da500146bf
commit
6fc52906e5
1 changed files with 23 additions and 0 deletions
23
reactos/include/reactos/wcsfuncs.h
Normal file
23
reactos/include/reactos/wcsfuncs.h
Normal file
|
@ -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
|
Loading…
Reference in a new issue