void_pointer.h 256 B

1234567891011
  1. #ifndef TOOLBOX_VOID_POINTER_H
  2. #define TOOLBOX_VOID_POINTER_H
  3. #include <stddef.h>
  4. __attribute__((__pure__))
  5. _Bool
  6. void_pointer_equal(const void *restrict vptr1, const size_t vptr1_size
  7. , const void *restrict vptr2, const size_t vptr2_size);
  8. #endif