memzero.h 123 B

12345678
  1. #ifndef __MEMZERO_H__
  2. #define __MEMZERO_H__
  3. #include <stddef.h>
  4. void memzero(void* const pnt, const size_t len);
  5. #endif