blob: 64b9e7e2335e04c76739436137c774ff10d15d03 (
plain) (
tree)
|
|
/* See LICENSE file for copyright and license details. */
#include "common.h"
/**
* Initialise a `libcoopgamma_filter_table_t`
*
* @param this The record to initialise
* @return Zero on success, -1 on error
*/
int
libcoopgamma_filter_table_initialise(libcoopgamma_filter_table_t *restrict this)
{
memset(this, 0, sizeof(*this));
this->filters = NULL;
return 0;
}
|