blob: a9bf2b80022d87690b7b155b42da1ad7c5b5bbbf [file] [log] [blame]
Bill Yi4e213d52015-06-23 13:53:11 -07001/* Reed-Solomon encoder
2 * Copyright 2002, Phil Karn, KA9Q
3 * May be used under the terms of the GNU Lesser General Public License (LGPL)
4 */
5#include <string.h>
6
7#include "char.h"
8#include "rs-common.h"
9
10void encode_rs_char(void *p,data_t *data, data_t *parity){
11 struct rs *rs = (struct rs *)p;
12
13#include "encode_rs.h"
14
15}