Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

55 lines
964 B

  1. /*++
  2. Copyright (c) 1991-92 Microsoft Corporation
  3. Module Name:
  4. _wcsicmp.c
  5. Abstract:
  6. Temporary versions of _wcsicmp and _wcscmpi routines.
  7. Author:
  8. Cliff Van Dyke (cliffv) 20-Feb-1991
  9. Environment:
  10. User mode only.
  11. Contains NT-specific code.
  12. Requires ANSI C extensions: slash-slash comments, long external names.
  13. Revision History:
  14. 17-Apr-1991 (cliffv)
  15. Incorporated review comments.
  16. 27-Sep-1991 JohnRo
  17. Swiped _wcsicmp() from Cliff and put it in NetLib. Added _wcsicmp().
  18. 09-Apr-1992 JohnRo
  19. Prepare for WCHAR.H (_wcsicmp vs _wcscmpi, etc).
  20. --*/
  21. #include <nt.h>
  22. #include <ntrtl.h>
  23. #include <windef.h>
  24. #include <wchar.h>
  25. #if 0
  26. // _wcsicmp is preferred over _wcscmpi, which won't be implemented by
  27. // initial library from KarlSi. --JR 09-Apr-1992
  28. int
  29. _wcscmpi(
  30. IN const wchar_t *string1,
  31. IN const wchar_t *string2
  32. )
  33. {
  34. return (_wcsicmp(string1, string2));
  35. } // _wcscmpi
  36. #endif