heap_block_check.c 336 B

1234567891011
  1. #include "private.h"
  2. /*--------------------------------------------------------- */
  3. bool_t lub_heap_block_check(lub_heap_block_t * this)
  4. {
  5. lub_heap_tag_t *tail = lub_heap_block__get_tail(this);
  6. return (tail->words == this->alloc.tag.words) ? BOOL_TRUE : BOOL_FALSE;
  7. }
  8. /*--------------------------------------------------------- */