blob: 995b0d955731659340fd9d0304fcae94738a0d60 [file] [log] [blame]
Bill Yi4e213d52015-06-23 13:53:11 -07001/* General purpose Reed-Solomon decoder for 8-bit symbols or less
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 "fixed.h"
13
14int decode_rs_8(data_t *data, int *eras_pos, int no_eras, int pad){
15 int retval;
16
17 if(pad < 0 || pad > 222){
18 return -1;
19 }
20
21#include "decode_rs.h"
22
23 return retval;
24}