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

 #include   <string.h>

 char _far *_fstrnset(string, c, count);
 char _far *string;             String to work on
 int c;                         Character to initialize to
 size_t count;                  Number of characters to initialize

    This is the model independent version of strnset(); it sets
    count characters in string to c, and returns a pointer to the
    resulting string. See strnset() for more information.

    Returns:    A pointer to string.

 Portability:   Not supported by the ANSI standard.


See Also: strcpy() strnset() strset()

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