blob: 3c9ce7848746b60c9e783b6f32e7894b5fd60dad [file] [log] [blame]
Bill Yi4e213d52015-06-23 13:53:11 -07001/* Reed-Solomon encoder
2 * Copyright 2003, 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 "int.h"
8#include "rs-common.h"
9
10void encode_rs_int(void *p,data_t *data, data_t *parity){
11 struct rs *rs = (struct rs *)p;
12
13#include "encode_rs.h"
14
15}