Home | History | Annotate | Download | only in fec
      1 /* 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 
     10 void 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 }
     16