| 1234567891011121314151617181920 |
- #ifndef TOOLBOX_VPTR_H
- #define TOOLBOX_VPTR_H
- #include <stddef.h>
- #ifdef TOOLBOX_TYPEDEF
- typedef struct vptr vptr_st;
- #endif
- struct vptr {
- size_t size;
- void *data;
- };
- __attribute__((__pure__))
- _Bool
- vptr_equal(const struct vptr *restrict vptr1
- , const struct vptr *restrict vptr2);
- #endif
|