view libgsmfrp/state.c @ 3:3cd5ad24b1d4

libgsmfrp: implement internal state
author Mychaela Falconia <falcon@freecalypso.org>
date Sat, 19 Nov 2022 09:03:57 +0000
parents
children 286d5f097eb4
line wrap: on
line source

/*
 * In this module we implement allocation and initialization
 * of state structures for our GSM FR preprocessor.
 */

#include <stdlib.h>
#include <string.h>
#include "gsm_fr_preproc.h"
#include "internal.h"

struct gsmfr_preproc_state *gsmfr_preproc_create(void)
{
	struct gsmfr_preproc_state *st;

	st = malloc(sizeof(struct gsmfr_preproc_state));
	if (st)
		gsmfr_preproc_reset(st);
	return st;
}

void gsmfr_preproc_reset(struct gsmfr_preproc_state *st)
{
	memset(st, 0, sizeof(struct gsmfr_preproc_state));
}