RDFS
The Rice Comp413 2017 class' continuation on the work of the 2016 RDFS.
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Pages
dump.h
1 
23 #ifndef ISAL_INCLUDE_DUMP_H_
24 #define ISAL_INCLUDE_DUMP_H_
25 
26 #include <stdio.h>
27 #include <stdlib.h>
28 #include <string.h>
29 
30 #include "erasure_coder.h"
31 
32 void dumpEncoder(IsalEncoder *pCoder);
33 
34 void dumpDecoder(IsalDecoder *pCoder);
35 
36 void dump(unsigned char *buf, int len);
37 
38 void dumpMatrix(unsigned char **s, int k, int m);
39 
40 void dumpCodingMatrix(unsigned char *s, int n1, int n2);
41 
42 #endif // ISAL_INCLUDE_DUMP_H_
Definition: erasure_coder.h:45
Definition: erasure_coder.h:53