Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Borland C++ 2.x ( with Turbo C ) - <b>memset() initialize buffer</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 memset()                Initialize Buffer

 #include   <mem.h>                      Required for declarations only
 #include   <string.h>                   Use either string.h or memory.h

 void       *memset(dest,ch,cnt);
 void       *dest;                       Pointer to destination
 int        ch;                          Character to set
 size_t     cnt;                         Number of characters

    memset() sets the first 'cnt' bytes of the buffer 'dest' to the
    character 'ch'.

       Returns:     A pointer to the beginning of 'dest'.

   -------------------------------- Example ---------------------------------

    The following statements initialize the buffer 'buff' to 0.

           #include <mem.h>

           char buff[128];

           main()
           {
               memset(buff,'\0',128);
           }


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

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