16 lines
209 B
C
16 lines
209 B
C
#ifndef __MEMZERO_H__
|
|
#define __MEMZERO_H__
|
|
|
|
#include <stddef.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
void memzero(void* const pnt, const size_t len);
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern "C" */
|
|
#endif
|
|
|
|
|
|
#endif
|