Beispiel #1
0
void DSP_table_remove_dsp(DSP_table* table, int index)
{
    assert(table != NULL);
    assert(index >= 0);
    assert(index < table->size);

    Etable_remove(table->dsps, index);

    return;
}
Beispiel #2
0
void Pat_table_remove(Pat_table* table, int index)
{
    rassert(table != NULL);
    rassert(index >= 0);
    rassert(index < table->size);

    Etable_remove(table->pats, index);

    return;
}