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.

30 lines
844 B

  1. // cstring standard header
  2. #pragma once
  3. #ifndef _CSTRING_
  4. #define _CSTRING_
  5. #include <yvals.h>
  6. #ifdef _STD_USING
  7. #undef _STD_USING
  8. #include <string.h>
  9. #define _STD_USING
  10. #else /* _STD_USING */
  11. #include <string.h>
  12. _STD_BEGIN
  13. using ::size_t; using ::memchr; using ::memcmp;
  14. using ::memcpy; using ::memmove; using ::memset;
  15. using ::strcat; using ::strchr; using ::strcmp;
  16. using ::strcoll; using ::strcpy; using ::strcspn;
  17. using ::strerror; using ::strlen; using ::strncat;
  18. using ::strncmp; using ::strncpy; using ::strpbrk;
  19. using ::strrchr; using ::strspn; using ::strstr;
  20. using ::strtok; using ::strxfrm;
  21. _STD_END
  22. #endif /* _STD_USING */
  23. #endif /* _CSTRING_ */
  24. /*
  25. * Copyright (c) 1992-2001 by P.J. Plauger. ALL RIGHTS RESERVED.
  26. * Consult your license regarding permissions and restrictions.
  27. V3.10:0009 */