diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2019-09-23 20:09:39 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2019-09-23 20:09:39 +0200 |
commit | 09e514732788d821189c59ddc58e70355ba1a3cb (patch) | |
tree | d7adc353859aa7f796bda0b4be12421f69779e73 /src/fec/decode_rs_char.c | |
parent | 56ad3cdd13e4c0078329ede5781bae4fcaeed569 (diff) | |
download | ODR-SourceCompanion-09e514732788d821189c59ddc58e70355ba1a3cb.tar.gz ODR-SourceCompanion-09e514732788d821189c59ddc58e70355ba1a3cb.tar.bz2 ODR-SourceCompanion-09e514732788d821189c59ddc58e70355ba1a3cb.zip |
Add code from common repository
Diffstat (limited to 'src/fec/decode_rs_char.c')
-rw-r--r-- | src/fec/decode_rs_char.c | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/src/fec/decode_rs_char.c b/src/fec/decode_rs_char.c deleted file mode 100644 index 7105233..0000000 --- a/src/fec/decode_rs_char.c +++ /dev/null @@ -1,22 +0,0 @@ -/* General purpose Reed-Solomon decoder for 8-bit symbols or less - * Copyright 2003 Phil Karn, KA9Q - * May be used under the terms of the GNU Lesser General Public License (LGPL) - */ - -#ifdef DEBUG -#include <stdio.h> -#endif - -#include <string.h> - -#include "char.h" -#include "rs-common.h" - -int decode_rs_char(void *p, data_t *data, int *eras_pos, int no_eras){ - int retval; - struct rs *rs = (struct rs *)p; - -#include "decode_rs.h" - - return retval; -} |