reshuffling of dlls
[reactos.git] / reactos / lib / kernel32 / string / lstring.c
diff --git a/reactos/lib/kernel32/string/lstring.c b/reactos/lib/kernel32/string/lstring.c
deleted file mode 100644 (file)
index edb6a4c..0000000
+++ /dev/null
@@ -1,306 +0,0 @@
-/*
- * 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
-STDCALL
-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
-STDCALL
-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
-STDCALL
-lstrcpynA(
-         LPSTR lpString1,
-         LPCSTR lpString2,
-         int iMaxLength
-         )
-{
-  /* Can't use strncpy, because strncpy will fill unused bytes in
-     lpString1 with NUL bytes while lstrcpynA doesn't. Also lstrcpynA
-     guarantees NUL termination while strncpy doesn't */
-
-  if (lpString1 == NULL)
-  {
-    return NULL;
-  }
-
-  if (1 < iMaxLength)
-    {
-      char *d = lpString1;
-      const char *s = lpString2;
-
-      do
-        {
-          if ('\0' == *s)
-            break;
-          *d++ = *s++;
-        }
-      while(1 != --iMaxLength);
-      *d = '\0';
-    }
-  else if (1 == iMaxLength)
-    {
-      /* Only space for the terminator */
-      *lpString1 = '\0';
-    }
-
-  return lpString1;
-}
-
-
-/*
- * @implemented
- */
-LPSTR
-STDCALL
-lstrcpyA(
-        LPSTR lpString1,
-        LPCSTR lpString2
-        )
-{
-  if (lpString1 == NULL)
-  {
-    return NULL;
-  }
-
-  return strcpy(lpString1,lpString2);
-}
-
-
-/*
- * @implemented
- */
-LPSTR
-STDCALL
-lstrcatA(
-        LPSTR lpString1,
-        LPCSTR lpString2
-        )
-{
-  if (lpString1 == NULL)
-  {
-    return NULL;
-  }
-
-  return strcat(lpString1,lpString2);
-}
-
-
-/*
- * @implemented
- */
-int
-STDCALL
-lstrlenA(
-        LPCSTR lpString
-        )
-{
-  return strlen(lpString);
-}
-
-
-/*
- * @implemented
- */
-int
-STDCALL
-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
-STDCALL
-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
-STDCALL
-lstrcpynW(
-    LPWSTR lpString1,
-    LPCWSTR lpString2,
-    int iMaxLength
-    )
-{
-  /* Can't use wcsncpy, because wcsncpy will fill unused bytes in
-     lpString1 with NUL bytes while lstrcpynW doesn't Also lstrcpynW
-     guarantees NUL termination while wcsncpy doesn't */
-
-  if (lpString1 == NULL)
-  {
-    return NULL;
-  }
-
-  if (1 < iMaxLength)
-    {
-      WCHAR *d = lpString1;
-      const WCHAR *s = lpString2;
-
-      do
-        {
-          if (L'\0' == *s)
-            break;
-          *d++ = *s++;
-        }
-      while(1 != --iMaxLength);
-      *d = L'\0';
-    }
-  else if (1 == iMaxLength)
-    {
-      /* Only space for the terminator */
-      *lpString1 = L'\0';
-    }
-
-  return lpString1;
-}
-
-
-/*
- * @implemented
- */
-LPWSTR
-STDCALL
-lstrcpyW(
-    LPWSTR lpString1,
-    LPCWSTR lpString2
-    )
-{
-  if (lpString1 == NULL)
-  {
-    return NULL;
-  }
-
-  return wcscpy(lpString1,lpString2);
-}
-
-
-/*
- * @implemented
- */
-LPWSTR
-STDCALL
-lstrcatW(
-    LPWSTR lpString1,
-    LPCWSTR lpString2
-    )
-{
-  if (lpString1 == NULL)
-  {
-    return NULL;
-  }
-
-  return wcscat(lpString1,lpString2);
-}
-
-
-/*
- * @implemented
- */
-int
-STDCALL
-lstrlenW(
-    LPCWSTR lpString
-    )
-{
-  return wcslen(lpString);
-}