mirror of
https://github.com/reactos/reactos.git
synced 2024-11-10 00:34:39 +00:00
65ce146169
svn path=/branches/ros-csrss/; revision=57561
305 lines
4.3 KiB
C
305 lines
4.3 KiB
C
/*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS system libraries
|
|
* FILE: lib/kernel32/file/lstring.c
|
|
* PURPOSE: Local string functions
|
|
* PROGRAMMER: Ariadne ( ariadne@xs4all.nl)
|
|
* UPDATE HISTORY:
|
|
* Created 01/11/98
|
|
*/
|
|
|
|
#include <k32.h>
|
|
|
|
/*
|
|
* @implemented
|
|
*/
|
|
int
|
|
WINAPI
|
|
lstrcmpA(LPCSTR lpString1, LPCSTR lpString2)
|
|
{
|
|
int Result;
|
|
|
|
if (lpString1 == lpString2)
|
|
return 0;
|
|
if (lpString1 == NULL)
|
|
return -1;
|
|
if (lpString2 == NULL)
|
|
return 1;
|
|
|
|
Result = CompareStringA(GetThreadLocale(), 0, lpString1, -1, lpString2, -1);
|
|
if (Result) Result -= 2;
|
|
|
|
return Result;
|
|
}
|
|
|
|
|
|
/*
|
|
* @implemented
|
|
*/
|
|
int
|
|
WINAPI
|
|
lstrcmpiA(LPCSTR lpString1, LPCSTR lpString2)
|
|
{
|
|
int Result;
|
|
|
|
if (lpString1 == lpString2)
|
|
return 0;
|
|
if (lpString1 == NULL)
|
|
return -1;
|
|
if (lpString2 == NULL)
|
|
return 1;
|
|
|
|
Result = CompareStringA(GetThreadLocale(), NORM_IGNORECASE, lpString1, -1, lpString2, -1);
|
|
if (Result)
|
|
Result -= 2;
|
|
|
|
return Result;
|
|
}
|
|
|
|
/*
|
|
* @implemented
|
|
*/
|
|
LPSTR
|
|
WINAPI
|
|
lstrcpynA(LPSTR lpString1, LPCSTR lpString2, int iMaxLength)
|
|
{
|
|
LPSTR d = lpString1;
|
|
LPCSTR s = lpString2;
|
|
UINT count = iMaxLength;
|
|
LPSTR Ret = NULL;
|
|
|
|
_SEH2_TRY
|
|
{
|
|
while ((count > 1) && *s)
|
|
{
|
|
count--;
|
|
*d++ = *s++;
|
|
}
|
|
|
|
if (count)
|
|
*d = 0;
|
|
|
|
Ret = lpString1;
|
|
}
|
|
_SEH2_EXCEPT(EXCEPTION_EXECUTE_HANDLER)
|
|
{
|
|
}
|
|
_SEH2_END;
|
|
|
|
return Ret;
|
|
}
|
|
|
|
|
|
/*
|
|
* @implemented
|
|
*/
|
|
LPSTR
|
|
WINAPI
|
|
lstrcpyA(LPSTR lpString1, LPCSTR lpString2)
|
|
{
|
|
LPSTR Ret = NULL;
|
|
|
|
_SEH2_TRY
|
|
{
|
|
memmove(lpString1, lpString2, strlen(lpString2) + 1);
|
|
Ret = lpString1;
|
|
}
|
|
_SEH2_EXCEPT(EXCEPTION_EXECUTE_HANDLER)
|
|
{
|
|
}
|
|
_SEH2_END;
|
|
|
|
return Ret;
|
|
}
|
|
|
|
|
|
/*
|
|
* @implemented
|
|
*/
|
|
LPSTR
|
|
WINAPI
|
|
lstrcatA(LPSTR lpString1, LPCSTR lpString2)
|
|
{
|
|
LPSTR Ret = NULL;
|
|
|
|
_SEH2_TRY
|
|
{
|
|
Ret = strcat(lpString1, lpString2);
|
|
}
|
|
_SEH2_EXCEPT(EXCEPTION_EXECUTE_HANDLER)
|
|
{
|
|
}
|
|
_SEH2_END;
|
|
|
|
return Ret;
|
|
}
|
|
|
|
|
|
/*
|
|
* @implemented
|
|
*/
|
|
int
|
|
WINAPI
|
|
lstrlenA(LPCSTR lpString)
|
|
{
|
|
INT Ret = 0;
|
|
|
|
_SEH2_TRY
|
|
{
|
|
Ret = strlen(lpString);
|
|
}
|
|
_SEH2_EXCEPT(EXCEPTION_EXECUTE_HANDLER)
|
|
{
|
|
}
|
|
_SEH2_END;
|
|
|
|
return Ret;
|
|
}
|
|
|
|
|
|
/*
|
|
* @implemented
|
|
*/
|
|
int
|
|
WINAPI
|
|
lstrcmpW(LPCWSTR lpString1, LPCWSTR lpString2)
|
|
{
|
|
int Result;
|
|
|
|
if (lpString1 == lpString2)
|
|
return 0;
|
|
if (lpString1 == NULL)
|
|
return -1;
|
|
if (lpString2 == NULL)
|
|
return 1;
|
|
|
|
Result = CompareStringW(GetThreadLocale(), 0, lpString1, -1, lpString2, -1);
|
|
if (Result)
|
|
Result -= 2;
|
|
|
|
return Result;
|
|
}
|
|
|
|
|
|
/*
|
|
* @implemented
|
|
*/
|
|
int
|
|
WINAPI
|
|
lstrcmpiW(LPCWSTR lpString1, LPCWSTR lpString2)
|
|
{
|
|
int Result;
|
|
|
|
if (lpString1 == lpString2)
|
|
return 0;
|
|
if (lpString1 == NULL)
|
|
return -1;
|
|
if (lpString2 == NULL)
|
|
return 1;
|
|
|
|
Result = CompareStringW(GetThreadLocale(), NORM_IGNORECASE, lpString1, -1, lpString2, -1);
|
|
if (Result)
|
|
Result -= 2;
|
|
|
|
return Result;
|
|
}
|
|
|
|
|
|
/*
|
|
* @implemented
|
|
*/
|
|
LPWSTR
|
|
WINAPI
|
|
lstrcpynW(LPWSTR lpString1, LPCWSTR lpString2, int iMaxLength)
|
|
{
|
|
LPWSTR d = lpString1;
|
|
LPCWSTR s = lpString2;
|
|
UINT count = iMaxLength;
|
|
LPWSTR Ret = NULL;
|
|
|
|
_SEH2_TRY
|
|
{
|
|
while ((count > 1) && *s)
|
|
{
|
|
count--;
|
|
*d++ = *s++;
|
|
}
|
|
|
|
if (count)
|
|
*d = 0;
|
|
|
|
Ret = lpString1;
|
|
}
|
|
_SEH2_EXCEPT(EXCEPTION_EXECUTE_HANDLER)
|
|
{
|
|
}
|
|
_SEH2_END;
|
|
|
|
return Ret;
|
|
}
|
|
|
|
|
|
/*
|
|
* @implemented
|
|
*/
|
|
LPWSTR
|
|
WINAPI
|
|
lstrcpyW(LPWSTR lpString1, LPCWSTR lpString2)
|
|
{
|
|
LPWSTR Ret = NULL;
|
|
|
|
_SEH2_TRY
|
|
{
|
|
Ret = wcscpy(lpString1, lpString2);
|
|
}
|
|
_SEH2_EXCEPT(EXCEPTION_EXECUTE_HANDLER)
|
|
{
|
|
}
|
|
_SEH2_END;
|
|
|
|
return Ret;
|
|
}
|
|
|
|
|
|
/*
|
|
* @implemented
|
|
*/
|
|
LPWSTR
|
|
WINAPI
|
|
lstrcatW(LPWSTR lpString1, LPCWSTR lpString2)
|
|
{
|
|
LPWSTR Ret = NULL;
|
|
|
|
_SEH2_TRY
|
|
{
|
|
Ret = wcscat(lpString1, lpString2);
|
|
}
|
|
_SEH2_EXCEPT(EXCEPTION_EXECUTE_HANDLER)
|
|
{
|
|
}
|
|
_SEH2_END;
|
|
|
|
return Ret;
|
|
}
|
|
|
|
|
|
/*
|
|
* @implemented
|
|
*/
|
|
int
|
|
WINAPI
|
|
lstrlenW(LPCWSTR lpString)
|
|
{
|
|
INT Ret = 0;
|
|
|
|
_SEH2_TRY
|
|
{
|
|
Ret = wcslen(lpString);
|
|
}
|
|
_SEH2_EXCEPT(EXCEPTION_EXECUTE_HANDLER)
|
|
{
|
|
}
|
|
_SEH2_END;
|
|
|
|
return Ret;
|
|
}
|