comparison libgsmfr2/pp_state.c @ 533:3a617e4e9b27

libgsmfr2: add const words with struct sizes
author Mychaela Falconia <falcon@freecalypso.org>
date Thu, 19 Sep 2024 21:58:10 +0000
parents 573afa985df6
children
comparison
equal deleted inserted replaced
532:5a3535470c95 533:3a617e4e9b27
6 #include <stdint.h> 6 #include <stdint.h>
7 #include <stdlib.h> 7 #include <stdlib.h>
8 #include <string.h> 8 #include <string.h>
9 #include "tw_gsmfr.h" 9 #include "tw_gsmfr.h"
10 #include "pp_state.h" 10 #include "pp_state.h"
11
12 const unsigned gsmfr_preproc_state_size = sizeof(struct gsmfr_preproc_state);
11 13
12 struct gsmfr_preproc_state *gsmfr_preproc_create(void) 14 struct gsmfr_preproc_state *gsmfr_preproc_create(void)
13 { 15 {
14 struct gsmfr_preproc_state *st; 16 struct gsmfr_preproc_state *st;
15 17