| 123456789101112 |
- #ifndef TOOLBOX_VOID_POINTER_H
- #define TOOLBOX_VOID_POINTER_H
- #include <stdbool.h>
- #include <stddef.h>
- __attribute__((__pure__))
- bool
- void_pointer_equal(const void *restrict r_p_vptr1, const size_t p_vptr1_size
- , const void *restrict r_p_vptr2, const size_t p_vptr2_size);
- #endif
|