1 /* General purpose Reed-Solomon decoder 2 * Copyright 2003 Phil Karn, KA9Q 3 * May be used under the terms of the GNU Lesser General Public License (LGPL) 4 */ 5 6 #ifdef DEBUG 7 #include <stdio.h> 8 #endif 9 10 #include <string.h> 11 12 #include "int.h" 13 #include "rs-common.h" 14 decode_rs_int(void * p,data_t * data,int * eras_pos,int no_eras)15int decode_rs_int(void *p, data_t *data, int *eras_pos, int no_eras){ 16 int retval; 17 struct rs *rs = (struct rs *)p; 18 19 #include "decode_rs.h" 20 21 return retval; 22 } 23