void allocation_state_reset_counts()

in ext/liballocations/state.c [15:21]


void allocation_state_reset_counts(AllocationState *state) {
    if ( state->object_counts ) {
        st_free_table(state->object_counts);
    }

    state->object_counts = NULL;
}