| 1234567891011 |
- #ifndef TOOLBOX_VOID_POINTER_H
- #define TOOLBOX_VOID_POINTER_H
- #include <stddef.h>
- __attribute__((__pure__))
- _Bool
- void_pointer_equal(const void *restrict vptr1, const size_t vptr1_size
- , const void *restrict vptr2, const size_t vptr2_size);
- #endif
|