C Language and Libraries Help (clang.hlp) (Table of Contents; Topic list)
memset, _fmemset
 Summary Example                         Up Contents Index Back
─────Run-Time Library───────────────────────────────────────────────────────
 
     The memset and _fmemset functions set the first <count> bytes of
     <dest> to the character <c>.
 
     The _fmemset function is a model-independent (large model) form of
     the memset function and can be called from any point in the
     program.
 
     There is a semantic difference between the function version of
     memset and its intrinsic version. The function version supports
     huge pointers in compact-, large-, and huge-model programs, but
     the intrinsic version does not.
 
     Return Value
 
     The memset and _fmemset functions return the value of <dest>.
                                    -♦-