Leaked source code of windows server 2003
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.

32 lines
831 B

  1. /***
  2. * wcstr.h - declarations for wide character string manipulation functions
  3. *
  4. * Copyright (c) 1985-1992, Microsoft Corporation. All rights reserved.
  5. *
  6. *Purpose:
  7. * This file contains the function declarations for the string
  8. * manipulation functions.
  9. * [OBSOLETE][UNICODE/ISO]
  10. *
  11. * WARNING: OBSOLETE FILE: use wchar.h/stdlib.h instead!!!
  12. * This file provided only for short-term compatibility. It will
  13. * disappear in the near future after a brief transitional period.
  14. *
  15. ****/
  16. #ifndef _INC_WCSTR
  17. #include <wchar.h>
  18. #define wcswcs wcsstr
  19. #define _wcscmpi _wcsicmp
  20. #if !__STDC__
  21. #define wcscmpi _wcsicmp
  22. #endif
  23. /* from stdlib.h */
  24. int __cdecl wctomb(char *, wchar_t);
  25. size_t __cdecl wcstombs(char*, const wchar_t *, size_t);
  26. #define _INC_WCSTR
  27. #endif /* _INC_WCSTR */