blob: 1ef1a1f9603274d01cd073b84ad15ddb42af3dda [file] [log] [blame]
Bill Yi4e213d52015-06-23 13:53:11 -07001/* 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
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}