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>_fstrncmp() copy n characters (model independent)</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 _fstrncmp()             Copy n Characters (Model Independent)

 #include   <string.h>

 char _far *_fstrncpy(string1, string2, count );
 char _far *string1;            Destination string
 char _far *string2;            Source string
 size_t count;                  Number of characters to copy

    This is the model independent version of strncpy(); it copies
    the first count characters of string2 to string1,
    returning a pointer to the resulting string. See strncpy() for more
    information.

    Returns:    A pointer to string1.

 Portability:   Not supported by the ANSI standard.


See Also: strcat() strncat() strncmp() strnicmp() strncpy()

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