|
safec
2.1
Safe C Library - ISO TR24731 Bounds Checking Interface
|
#include "safeclib_private.h"#include "safe_mem_constraint.h"#include "mem_primitives_lib.h"#include "safe_mem_lib.h"
Include dependency graph for memzero16_s.c:Go to the source code of this file.
Functions | |
| errno_t | memzero16_s (uint16_t *dest, rsize_t len) |
| Zeros len uint16_ts starting at dest. More... | |
| errno_t memzero16_s | ( | uint16_t * | dest, |
| rsize_t | len | ||
| ) |
Zeros len uint16_ts starting at dest.
| [out] | dest | pointer to memory to be zeroed. |
| [in] | len | number of uint16_ts to be zeroed |
| EOK | when operation is successful |
| ESNULLP | when dest is NULL POINTER |
| ESZEROL | when len = ZERO |
| ESLEMAX | when len > RSIZE_MAX_MEM16 |
Definition at line 64 of file memzero16_s.c.