| 
        blkclr - General: Zero a block of memory
        void blkclr(
               char*b1,
               unsigned int n );
       Specifies  a  pointer  to  a  string  of at least n bytes.
       Specifies the number of bytes to be zeroed.
       The blkclr routine zeros n bytes of  memory  beginning  at
       the address specified by b1.
       None
 
       Routines:  bcopy(3)  ,bzero(3)  ,copystr(9r), ovbcopy(9r),
       strcpy(9r), strncpy(9r)
                                                       blkclr(9r)
[ Back ] |