|
CAEN Utility
2.0.2
Utilities for CAEN projects
|
Wrappers to memset/memcpy/memmove. More...
Functions | |
| static void * | c_zeromem (void *dest, size_t size) |
Wrapper to memset(dest, 0, size), with check for NULL arguments. More... | |
| static void * | c_memset (void *dest, int val, size_t size) |
Wrapper to memset(dest, val, size), with check for NULL arguments. More... | |
| static void * | c_memcpy (void *__restrict dest, const void *__restrict src, size_t size) |
Wrapper to memcpy(dest, src, size), with check for NULL arguments. More... | |
| static void * | c_memmove (void *dest, const void *src, size_t size) |
Wrapper to memmove(dest, src, size), with check for NULL arguments. More... | |
Wrappers to memset/memcpy/memmove.
|
inlinestatic |
Wrapper to memset(dest, 0, size), with check for NULL arguments.
Definition at line 92 of file CAENMultiplatform.h.
|
inlinestatic |
Wrapper to memset(dest, val, size), with check for NULL arguments.
Definition at line 96 of file CAENMultiplatform.h.
|
inlinestatic |
Wrapper to memcpy(dest, src, size), with check for NULL arguments.
Definition at line 100 of file CAENMultiplatform.h.
|
inlinestatic |
Wrapper to memmove(dest, src, size), with check for NULL arguments.
Definition at line 104 of file CAENMultiplatform.h.