home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / vc98 / crt / src / mbscat.c < prev    next >
C/C++ Source or Header  |  1998-06-17  |  556b  |  20 lines

  1. /***
  2. *mbscat.c - contains mbscat() and mbscpy()
  3. *
  4. *       Copyright (c) 1985-1997, Microsoft Corporation. All rights reserved.
  5. *
  6. *Purpose:
  7. *       mbscpy() copies one string onto another.
  8. *
  9. *       mbscat() concatenates (appends) a copy of the source string to the
  10. *       end of the destination string, returning the destination string.
  11. *
  12. *******************************************************************************/
  13.  
  14. #ifdef _MBCS
  15. #define strcat _mbscat
  16. #define strcpy _mbscpy
  17. #define _MBSCAT
  18. #include "strcat.c"
  19. #endif  /* _MBCS */
  20.