Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Microsoft C 6.0 - <b>_fstrncat() append n characters (model independent)</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 _fstrncat()             Append n Characters (Model Independent)

 #include   <string.h>

 char _far *_fstrncat(string1, string2, count);
 char _far *string1;            Destination String
 char _far *string2;            Source String
 size_t count;                  Count of characters to append

    This is the model independent version of strncat(); it appends the
    first count characters of string2 to string1, and
    returns a pointer to the resulting string. See strncat() for more
    information.

    Returns:    Pointer to the resulting string.

 Portability:   Not supported by the ANSI standard.


See Also: strcat() strcmp() strcpy() strncmp() strncat() strncpy()

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson