1/* 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 "char.h"
13#include "rs-common.h"
14
15int decode_rs_char(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