[][src]Function avr_libc::memset

pub unsafe extern "C" fn memset(
    arg1: *mut c_void,
    arg2: i16,
    arg3: size_t
) -> *mut c_void

\ingroup avr_string \fn void *memset(void *dest, int val, size_t len) \brief Fill memory with a constant byte.

The memset() function fills the first len bytes of the memory area pointed to by dest with the constant byte val.

\returns The memset() function returns a pointer to the memory area dest.