GNU Radio's CCSDS Package
rs.h
Go to the documentation of this file.
1 #ifndef _RS_H
2 #define _RS_H
3 
4 
5 /*
6  * When using the 'rs' data structure from "outside" the library, we make all
7  * the "internal" data table pointers generic (and hence inaccessible).
8  * However, we require access to the remainder of the structure.
9  */
10 typedef void data_t;
11 
12 #include <fec/rs-common.h>
13 #include <fec/fec.h>
14 
15 /*
16  * pad_rs_int
17  * pad_rs_char
18  *
19  * Provided by previous versions of Phil's Reed-Solomon library.
20  *
21  */
22 void *pad_rs_char( void *p, int pad );
23 void *pad_rs_int( void *p, int pad );
24 
25 #endif /* _RS_H */
26 
void * pad_rs_int(void *p, int pad)
void * pad_rs_char(void *p, int pad)
void data_t
Definition: rs.h:10