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>_fmemccpy() copies characters from buffer (model indepedent)</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 _fmemccpy()             Copies Characters From Buffer (Model Indepedent)

 #include   <string.h>
 #include   <memory.h>

 void _far *_fmemccpy(dest, src, c, count);
 void _far *dest;               Pointer to destination
 void _far *src;                Pointer to source
 int c;                         Last character to copy
 unsigned count;                Number of characters to copy

    This is the model independent version of memccpy(); it copies
    bytes from src to dest until it runs out of bytes to copy
    (count is the maximum) or it encounters the first occurance of
    the character c (c is then the last byte copied). See memccpy()
    for more information.

    Returns:        If successful: a pointer to the byte in dest
                    following c; 0 otherwise.

 Portability:   Not supported by the ANSI standard.


See Also: memchr() memcmp() memccpy() memcpy() memset()

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