StrNCatStrNCat*
*Contents  *Index  *Topic Contents
*Previous Topic: StrIsIntlEqual
*Next Topic: StrPBrk

StrNCat


LPTSTR StrNCat(
    LPTSTR front,
    LPCTSTR back,
    int cchMax
    );

#define StrCatN StrNCat

Copies and appends a specified number of characters from one string onto the end of another string. The StrCatN macro differs from this function in name only.

front
Address of the string to which the characters will be copied.
back
Address of the string to be copied.
cchMax
Number of characters to copy.

Up Top of Page
© 1997 Microsoft Corporation. All rights reserved. Terms of Use.