void_pointer.h 290 B

123456789101112
  1. #ifndef TOOLBOX_VOID_POINTER_H
  2. #define TOOLBOX_VOID_POINTER_H
  3. #include <stdbool.h>
  4. #include <stddef.h>
  5. __attribute__((__pure__))
  6. bool
  7. void_pointer_equal(const void *restrict r_p_vptr1, const size_t p_vptr1_size
  8. , const void *restrict r_p_vptr2, const size_t p_vptr2_size);
  9. #endif