Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 7 of file memset.c.
{ char *char_src = (char *)src; while(count>0) { *char_src = val; char_src++; count--; } return src; }